diff options
| author | Claude Paroz <claude@2xlibre.net> | 2016-05-04 20:59:52 +0200 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2016-05-04 20:59:52 +0200 |
| commit | 3204bc8e5e4845cf9fbd12246f83ae851081870e (patch) | |
| tree | ca753943d07693f77df7bcc1fe7e2fa070a2a1b1 | |
| parent | 388bb5bd9aa3cd43825cd8a3632a57d8204f875f (diff) | |
Replaced a 'raw' six import
| -rw-r--r-- | django/core/checks/urls.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/django/core/checks/urls.py b/django/core/checks/urls.py index 1b4db4b921..b045fa0aae 100644 --- a/django/core/checks/urls.py +++ b/django/core/checks/urls.py @@ -1,8 +1,7 @@ from __future__ import unicode_literals -import six - from django.conf import settings +from django.utils import six from . import Error, Tags, Warning, register |
