summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--django/core/db/backends/mysql.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/django/core/db/backends/mysql.py b/django/core/db/backends/mysql.py
index 939d3c2df7..4a54a277e4 100644
--- a/django/core/db/backends/mysql.py
+++ b/django/core/db/backends/mysql.py
@@ -9,7 +9,6 @@ from django.core.db.dicthelpers import *
import MySQLdb as Database
from MySQLdb.converters import conversions
from MySQLdb.constants import FIELD_TYPE
-from _mysql_exceptions import NotSupportedError
import types
DatabaseError = Database.DatabaseError
@@ -43,7 +42,7 @@ class DatabaseWrapper:
if self.connection:
try:
self.connection.rollback()
- except NotSupportedError:
+ except Database.NotSupportedError:
pass
def close(self):