summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-05-09 15:45:09 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-05-09 15:45:09 +0000
commit05fd735afe721c43b5096f7d0d7367b3653431c2 (patch)
treed478d92766c026126221d0353e8aafe4a8b4e7e3
parentc63372f3c4186fabeb61081db5421204008fd98c (diff)
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
-rw-r--r--django/db/backends/ado_mssql/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/db/backends/ado_mssql/base.py b/django/db/backends/ado_mssql/base.py
index b43be1fa7a..fe36303565 100644
--- a/django/db/backends/ado_mssql/base.py
+++ b/django/db/backends/ado_mssql/base.py
@@ -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):