Moved misplaced import in backends init

This commit is contained in:
Claude Paroz 2013-10-15 16:36:31 +02:00
parent f719d4afc7
commit dd1ab8982b
1 changed files with 1 additions and 3 deletions

View File

@ -1,8 +1,6 @@
import datetime import datetime
import time import time
from django.db.utils import DatabaseError, ProgrammingError
try: try:
from django.utils.six.moves import _thread as thread from django.utils.six.moves import _thread as thread
except ImportError: except ImportError:
@ -16,7 +14,7 @@ from django.db import DEFAULT_DB_ALIAS
from django.db.backends.signals import connection_created from django.db.backends.signals import connection_created
from django.db.backends import utils from django.db.backends import utils
from django.db.transaction import TransactionManagementError from django.db.transaction import TransactionManagementError
from django.db.utils import DatabaseErrorWrapper from django.db.utils import DatabaseError, DatabaseErrorWrapper, ProgrammingError
from django.utils.functional import cached_property from django.utils.functional import cached_property
from django.utils import six from django.utils import six
from django.utils import timezone from django.utils import timezone