Commit 6155b66d authored by Tim Graham's avatar Tim Graham
Browse files

[1.5.x] Fixed a typo in docs/topics/auth/customizing.txt

Backport of 2c173ff3 from master
parent be5369fd
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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