diff options
| author | Aymeric Augustin <aymeric.augustin@m4x.org> | 2013-07-01 22:49:07 +0200 |
|---|---|---|
| committer | Aymeric Augustin <aymeric.augustin@m4x.org> | 2013-07-01 22:49:07 +0200 |
| commit | e021b87c0009c11aa2e62b62fc40b4b0209a8e5d (patch) | |
| tree | 289d9d35667705df39c2de8dfd1cdbc398f09c53 /django | |
| parent | 09b446dfe86f01f9d21e8c6351a31c5587a5b7a9 (diff) | |
Fixed a few more imports of django.utils.unittest.
One import per line please! Refs #20680.
Diffstat (limited to 'django')
| -rw-r--r-- | django/contrib/gis/tests/geoapp/tests.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/django/contrib/gis/tests/geoapp/tests.py b/django/contrib/gis/tests/geoapp/tests.py index 89505ae1f2..487f879674 100644 --- a/django/contrib/gis/tests/geoapp/tests.py +++ b/django/contrib/gis/tests/geoapp/tests.py @@ -1,6 +1,7 @@ from __future__ import absolute_import import re +import unittest from unittest import skipUnless from django.db import connection @@ -10,7 +11,7 @@ from django.contrib.gis.tests.utils import ( no_mysql, no_oracle, no_spatialite, mysql, oracle, postgis, spatialite) from django.test import TestCase -from django.utils import six, unittest +from django.utils import six if HAS_GEOS: from django.contrib.gis.geos import (fromstr, GEOSGeometry, |
