diff options
| author | Claude Paroz <claude@2xlibre.net> | 2013-09-24 10:25:39 +0200 |
|---|---|---|
| committer | Claude Paroz <claude@2xlibre.net> | 2013-09-24 10:25:39 +0200 |
| commit | 4c5bc1ac30fea526259026bf762b4806dd5f1459 (patch) | |
| tree | 9501e4c60d25c2d89c22fc8b466565d4d1c9837c | |
| parent | 946a2226eacfcbc4d7996b36fd9944debdf2d8c2 (diff) | |
Removed double import in mysql base.py
| -rw-r--r-- | django/db/backends/mysql/base.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/django/db/backends/mysql/base.py b/django/db/backends/mysql/base.py index 2d33f45705..69e32fe627 100644 --- a/django/db/backends/mysql/base.py +++ b/django/db/backends/mysql/base.py @@ -16,8 +16,6 @@ except ImportError as e: from django.core.exceptions import ImproperlyConfigured raise ImproperlyConfigured("Error loading MySQLdb module: %s" % e) -from django.utils.functional import cached_property - # We want version (1, 2, 1, 'final', 2) or later. We can't just use # lexicographic ordering in this check because then (1, 2, 1, 'gamma') # inadvertently passes the version test. |
