From 7bac5520690b8df041e705862096a969f76975fc Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Wed, 10 Aug 2005 04:48:47 +0000 Subject: [PATCH] Changed [459] to use a better interface for the exception git-svn-id: http://code.djangoproject.com/svn/django/trunk@460 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/core/db/backends/mysql.py | 3 +-- 1 file changed, 1 insertion(+), 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):