diff options
author | Tim Graham <timograham@gmail.com> | 2015-01-12 15:20:40 -0500 |
---|---|---|
committer | Tim Graham <timograham@gmail.com> | 2015-01-14 14:16:20 -0500 |
commit | 28308078f397d1de36fd0da417ac7da2544ba12d (patch) | |
tree | 80207ff582b2350d058c1c7c49072b761391c04f /django/db/backends/postgresql_psycopg2/operations.py | |
parent | 737d24923ac69bb8b89af1bb2f3f4c4c744349e8 (diff) | |
download | django-28308078f397d1de36fd0da417ac7da2544ba12d.tar.gz |
Fixed #22603 -- Reorganized classes in django.db.backends.
Diffstat (limited to 'django/db/backends/postgresql_psycopg2/operations.py')
-rw-r--r-- | django/db/backends/postgresql_psycopg2/operations.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/postgresql_psycopg2/operations.py b/django/db/backends/postgresql_psycopg2/operations.py index 31cbe5919f..8e90a4020b 100644 --- a/django/db/backends/postgresql_psycopg2/operations.py +++ b/django/db/backends/postgresql_psycopg2/operations.py @@ -1,7 +1,7 @@ from __future__ import unicode_literals from django.conf import settings -from django.db.backends import BaseDatabaseOperations +from django.db.backends.base.operations import BaseDatabaseOperations class DatabaseOperations(BaseDatabaseOperations): |