Fixed #1797 -- Fixed NameError in ado_mssql backend. Thanks, pb

git-svn-id: http://code.djangoproject.com/svn/django/trunk@2873 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2006-05-09 15:45:09 +00:00
parent c63372f3c4
commit 05fd735afe
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ class DatabaseWrapper(local):
self.connection = Database.connect(conn_string)
cursor = self.connection.cursor()
if settings.DEBUG:
return base.CursorDebugWrapper(cursor, self)
return util.CursorDebugWrapper(cursor, self)
return cursor
def _commit(self):