diff options
| author | Tim Graham <timograham@gmail.com> | 2014-04-10 08:45:48 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-04-10 08:45:48 -0400 |
| commit | b513fa5fc6f10a6e224d602bfac8f850040cef7c (patch) | |
| tree | f13d57cd01f5c2349bc8ae48fa5b1679cc6184b4 /django/contrib/auth/apps.py | |
| parent | 7e3834adc993317bc691cc6edc0be13538dc39ad (diff) | |
Fixed #22195 -- Used constants to define built-in tags for check framework.
Thanks Elvard for the patch.
Diffstat (limited to 'django/contrib/auth/apps.py')
| -rw-r--r-- | django/contrib/auth/apps.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/auth/apps.py b/django/contrib/auth/apps.py index f0e169c23c..254a73d3db 100644 --- a/django/contrib/auth/apps.py +++ b/django/contrib/auth/apps.py @@ -10,4 +10,4 @@ class AuthConfig(AppConfig): verbose_name = _("Authentication and Authorization") def ready(self): - checks.register('models')(check_user_model) + checks.register(checks.Tags.models)(check_user_model) |
