diff options
author | Andrew Godwin <andrew@aeracode.org> | 2013-06-28 17:32:57 +0100 |
---|---|---|
committer | Andrew Godwin <andrew@aeracode.org> | 2013-06-28 17:32:57 +0100 |
commit | 7a47ba6f6aeca36b8b092dbafd36abb342d34d4b (patch) | |
tree | e959922f7d4d08057225459e31697f410e26df26 /django/db/backends/postgresql_psycopg2/base.py | |
parent | e2d7e83256234251a81ad3388428f6579795a672 (diff) | |
parent | 48dd1e63bbb93479666208535a56f8c7c4aeab3a (diff) | |
download | django-7a47ba6f6aeca36b8b092dbafd36abb342d34d4b.tar.gz |
Merge remote-tracking branch 'core/master' into schema-alteration
Conflicts:
django/db/backends/__init__.py
django/db/models/fields/related.py
tests/field_deconstruction/tests.py
Diffstat (limited to 'django/db/backends/postgresql_psycopg2/base.py')
-rw-r--r-- | django/db/backends/postgresql_psycopg2/base.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/django/db/backends/postgresql_psycopg2/base.py b/django/db/backends/postgresql_psycopg2/base.py index de86758653..bf75459b4a 100644 --- a/django/db/backends/postgresql_psycopg2/base.py +++ b/django/db/backends/postgresql_psycopg2/base.py @@ -6,7 +6,6 @@ Requires psycopg 2: http://initd.org/projects/psycopg2 import logging import sys -from django.db import utils from django.db.backends import * from django.db.backends.postgresql_psycopg2.operations import DatabaseOperations from django.db.backends.postgresql_psycopg2.client import DatabaseClient @@ -17,7 +16,6 @@ from django.db.backends.postgresql_psycopg2.schema import DatabaseSchemaEditor from django.utils.encoding import force_str from django.utils.functional import cached_property from django.utils.safestring import SafeText, SafeBytes -from django.utils import six from django.utils.timezone import utc try: |