Commit 05fd735a authored by Adrian Holovaty's avatar Adrian Holovaty
Browse files

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
parent c63372f3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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):