Changeset 2033
- Timestamp:
- 01/17/06 11:45:40 (3 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/magic-removal/django/db/backends/mysql/base.py
r1999 r2033 69 69 cursor.execute("SET NAMES utf8") 70 70 if settings.DEBUG: 71 return base.CursorDebugWrapper(MysqlDebugWrapper(cursor), self)71 return util.CursorDebugWrapper(MysqlDebugWrapper(cursor), self) 72 72 return cursor 73 73
