Django

Code

Changeset 2033

Show
Ignore:
Timestamp:
01/17/06 11:45:40 (3 years ago)
Author:
adrian
Message:

magic-removal: Fixed bug in mysql backend with DEBUG=True

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • django/branches/magic-removal/django/db/backends/mysql/base.py

    r1999 r2033  
    6969            cursor.execute("SET NAMES utf8") 
    7070        if settings.DEBUG: 
    71             return base.CursorDebugWrapper(MysqlDebugWrapper(cursor), self) 
     71            return util.CursorDebugWrapper(MysqlDebugWrapper(cursor), self) 
    7272        return cursor 
    7373