1
0
mirror of https://github.com/django/django.git synced 2025-10-27 23:56:08 +00:00

[1.10.x] Normalized casing of "custom user model".

Backport of 93a081946d from master
This commit is contained in:
Tim Graham
2016-11-23 15:03:33 -05:00
parent 9f89ca41db
commit 63696982b8
8 changed files with 88 additions and 92 deletions

View File

@@ -6,7 +6,7 @@ from django.db import models
from django.utils.encoding import python_2_unicode_compatible
# The custom User uses email as the unique identifier, and requires
# The custom user uses email as the unique identifier, and requires
# that every user provide a date of birth. This lets us test
# changes in username datatype, and non-text required fields.
class CustomUserManager(BaseUserManager):