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:23:16 -0500 |
| commit | 2c173ff3b45e0a123147e3633082bbf9a7624536 (patch) | |
| tree | deb40555530a67c3b054e8221b960553e8e6fbd0 | |
| parent | f556df90be995a83b979cf875705d98521ab4dc7 (diff) | |
Fixed a typo in docs/topics/auth/customizing.txt
| -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 cf031c7b84..7f1eff6624 100644 --- a/docs/topics/auth/customizing.txt +++ b/docs/topics/auth/customizing.txt @@ -444,11 +444,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 |
