From a247472568a3e1a0248557629feaae508ed21e18 Mon Sep 17 00:00:00 2001 From: Corentin Chary Date: Tue, 19 Apr 2011 11:54:53 +0200 Subject: [PATCH] euscanwww: it's better with a valid syntax Signed-off-by: Corentin Chary --- euscanwww/settings.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/euscanwww/settings.py b/euscanwww/settings.py index fcc3ae2..70ce081 100644 --- a/euscanwww/settings.py +++ b/euscanwww/settings.py @@ -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'), } }