From 43073dbd76a31b3c171877dc2edf9d177a10531f Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Mon, 8 Jul 2013 11:18:06 +1000 Subject: [PATCH] fixed a mis-importt in mysql/base.py --- django/db/backends/mysql/base.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/django/db/backends/mysql/base.py b/django/db/backends/mysql/base.py index 2db746f40f..719b8ca29b 100644 --- a/django/db/backends/mysql/base.py +++ b/django/db/backends/mysql/base.py @@ -36,9 +36,9 @@ except ImportError: pytz = None from django.conf import settings -from django.db import (utils, BaseDatabaseFeatures, BaseDatabaseOperations, - BaseDatabaseWrapper) -from django.db.backends import util +from django.db import utils +from django.db.backends import (util, BaseDatabaseFeatures, + BaseDatabaseOperations, BaseDatabaseWrapper) from django.db.backends.mysql.client import DatabaseClient from django.db.backends.mysql.creation import DatabaseCreation from django.db.backends.mysql.introspection import DatabaseIntrospection