euscanwww: it's better with a valid syntax

Signed-off-by: Corentin Chary <corentincj@iksaif.net>
This commit is contained in:
Corentin Chary 2011-04-19 11:54:53 +02:00
parent 7808fd22b7
commit a247472568

View File

@ -11,10 +11,6 @@ ADMINS = (
MANAGERS = ADMINS
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(os.path.dirname( __file__ ), 'euscan.db'),
"""
# MySQL Example:
'ENGINE': 'django.db.backends.mysql',
@ -27,6 +23,11 @@ DATABASES = {
'init_command': 'SET storage_engine=INNODB',
}
"""
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(os.path.dirname( __file__ ), 'euscan.db'),
}
}