diff options
| author | Tim Graham <timograham@gmail.com> | 2013-02-03 13:22:53 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-02-03 13:24:09 -0500 |
| commit | 6155b66d0685e0e305dfa422dfd02f2a6c7127b8 (patch) | |
| tree | 2f02d6bd3b48abdd13be434ec88cc5b99e0de671 /docs | |
| parent | be5369fd24adfc788e59eaf0363d4d137ded6ef8 (diff) | |
[1.5.x] Fixed a typo in docs/topics/auth/customizing.txt
Backport of 2c173ff3b4 from master
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/auth/customizing.txt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/topics/auth/customizing.txt b/docs/topics/auth/customizing.txt index 8997d6c24d..e61780ed79 100644 --- a/docs/topics/auth/customizing.txt +++ b/docs/topics/auth/customizing.txt @@ -438,11 +438,10 @@ different User model. you should specify the custom model using the :setting:`AUTH_USER_MODEL` setting. For example:: - from django.conf import settings from django.db import models - class Article(models.Model) + class Article(models.Model): author = models.ForeignKey(settings.AUTH_USER_MODEL) Specifying a custom User model |
