summaryrefslogtreecommitdiff
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:46 -0500
commit4f4d1a71d3a04d19b1e46f190fbafd88f3ddecf7 (patch)
tree9f322f53cf8ec56cd1daef4e880d7a81f3d97fd1
parent63696982b8deb33fa4840dbe57ccbd3cf3dea9cb (diff)
downloaddjango-4f4d1a71d3a04d19b1e46f190fbafd88f3ddecf7.tar.gz
[1.10.x] Fixed typo in docs/topics/auth/customizing.txt.
Backport of da4c0e8cc90d8a43908524f6b85135e60582feb7 from master
-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 9b73516fbf..5011eaebe9 100644
--- a/docs/topics/auth/customizing.txt
+++ b/docs/topics/auth/customizing.txt
@@ -393,7 +393,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