diff options
| author | Florian Apolloner <apollo13@users.noreply.github.com> | 2016-02-11 12:29:09 +0100 |
|---|---|---|
| committer | Florian Apolloner <apollo13@users.noreply.github.com> | 2016-02-11 12:29:09 +0100 |
| commit | 9332497701f2c69bf0bb6d38ce59a51ca7abe78d (patch) | |
| tree | 416fefde99f3af0f2469b1d4d4d43bb5e0ef04e4 | |
| parent | 6f1318734f0f3b6e62b782b0251a4e676e542e0b (diff) | |
| parent | 46c13fef466eed0605c59654b1c30ba5fe8a454b (diff) | |
Merge pull request #6121 from meshy/patch-1
Fix typo in comment
| -rw-r--r-- | django/contrib/auth/base_user.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/auth/base_user.py b/django/contrib/auth/base_user.py index 31fec4f723..48ab950c43 100644 --- a/django/contrib/auth/base_user.py +++ b/django/contrib/auth/base_user.py @@ -19,7 +19,7 @@ class BaseUserManager(models.Manager): @classmethod def normalize_email(cls, email): """ - Normalize the email address by lowercasing the domain part of the it. + Normalize the email address by lowercasing the domain part of it. """ email = email or '' try: |
