From da4c0e8cc90d8a43908524f6b85135e60582feb7 Mon Sep 17 00:00:00 2001 From: Alex Scott Date: Thu, 24 Nov 2016 02:41:21 -0800 Subject: [PATCH] Fixed typo in docs/topics/auth/customizing.txt. --- docs/topics/auth/customizing.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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