Hi, I have a problem with synchronization my Mysql database and application. When I run python manage.py syncdb I have a mistake:
ValueError: Unable to configure filter 'require_debug_false': Cannot resolve 'django.utils.log.RequireDebugFalse': No module named RequireDebugFalse
I now that module MySQLdb –is a standart “battery” In a python shell all ok:
>>> import MySQLdb
>>> MySQLdb.version_info
(1, 2, 4, 'final', 1)
A part of settings.py file:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'archeology$default',
'USER': 'archeology',
'PASSWORD': 'my-pass',
'HOST': 'mysql.server',
'PORT': '',
}
}
Thanks P.S. sorry for my English)))
[edited by admin for readability]