From 05fd735afe721c43b5096f7d0d7367b3653431c2 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Tue, 9 May 2006 15:45:09 +0000 Subject: [PATCH] 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 --- django/db/backends/ado_mssql/base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):