Преглед на файлове

Fixed typo in docs/topics/auth/customizing.txt.

Alex Scott преди 8 години
родител
ревизия
da4c0e8cc9
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      docs/topics/auth/customizing.txt

+ 1 - 1
docs/topics/auth/customizing.txt

@@ -403,7 +403,7 @@ user model, even if the default :class:`~django.contrib.auth.models.User` model
 is sufficient for you. This model behaves identically to the default user
 model, but you'll be able to customize it in the future if the need arises::
 
-    from django.conf.auth.models import AbstractUser
+    from django.contrib.auth.models import AbstractUser
 
     class User(AbstractUser):
         pass