diff options
| author | Claude Paroz <claude@2xlibre.net> | 2013-05-31 00:56:56 -0700 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2013-05-31 00:56:56 -0700 |
| commit | 3d883e8bd96df8f2166aec6331b80781463539a6 (patch) | |
| tree | d03ddd82dd2459f43e8895b338c7a0703471c025 /docs | |
| parent | 728d3fe1bac6b5f23dbd088e11860cfba51cf7b5 (diff) | |
| parent | 01ae881bb4d13d6fe1b77f8758cc0bc72786cfaa (diff) | |
Merge pull request #1232 from fusionbox/normalize_email
Fixed #20531 -- Don't hard-code class names when calling static methods
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/auth/customizing.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/auth/customizing.txt b/docs/topics/auth/customizing.txt index 9a8bab947c..bc021b14ad 100644 --- a/docs/topics/auth/customizing.txt +++ b/docs/topics/auth/customizing.txt @@ -939,7 +939,7 @@ authentication app:: raise ValueError('Users must have an email address') user = self.model( - email=MyUserManager.normalize_email(email), + email=self.normalize_email(email), date_of_birth=date_of_birth, ) |
