summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlex Scott <calexscott@gmail.com>2016-11-24 02:41:21 -0800
committerTim Graham <timograham@gmail.com>2016-11-24 05:41:21 -0500
commitda4c0e8cc90d8a43908524f6b85135e60582feb7 (patch)
tree52e4d75f9d895aa7bbc580af51fd2a4ddcfc5cf7 /docs
parent93a081946d92da010c7de62dc58e697c6c33e5d3 (diff)
Fixed typo in docs/topics/auth/customizing.txt.
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/auth/customizing.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/auth/customizing.txt b/docs/topics/auth/customizing.txt
index 34bc4f44a3..1b9dc6539e 100644
--- a/docs/topics/auth/customizing.txt
+++ b/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