Changeset 3010
- Timestamp:
- 09/06/06 14:46:53 (18 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/pykota/storages/mysqlstorage.py
r3009 r3010 51 51 self.database.autocommit(1) 52 52 except AttributeError : 53 self.tool.printInfo(_("Your version of python-mysqldb is too old. Please install a newer release."), "error")53 raise PyKotaStorageError, _("Your version of python-mysqldb is too old. Please install a newer release.") 54 54 self.cursor = self.database.cursor() 55 55 self.cursor.execute("SET NAMES 'utf8';")