From 28308078f397d1de36fd0da417ac7da2544ba12d Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Mon, 12 Jan 2015 15:20:40 -0500 Subject: Fixed #22603 -- Reorganized classes in django.db.backends. --- django/db/backends/postgresql_psycopg2/operations.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'django/db/backends/postgresql_psycopg2/operations.py') 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): -- cgit v1.2.1