summaryrefslogtreecommitdiff
path: root/forums/settings.py
diff options
context:
space:
mode:
Diffstat (limited to 'forums/settings.py')
-rw-r--r--forums/settings.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/forums/settings.py b/forums/settings.py
index 774617a..3134444 100644
--- a/forums/settings.py
+++ b/forums/settings.py
@@ -19,7 +19,7 @@ MANAGERS = ADMINS
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
- 'NAME': 'forums', # Or path to database file if using sqlite3.
+ 'NAME': db, # Or path to database file if using sqlite3.
# The following settings are not used with sqlite3:
'USER': db_user,
'PASSWORD': db_pass,
@@ -28,7 +28,7 @@ DATABASES = {
},
'spoken': {
'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
- 'NAME': 'spoken', # Or path to database file if using sqlite3.
+ 'NAME': sdb, # Or path to database file if using sqlite3.
# The following settings are not used with sqlite3:
'USER': db_user,
'PASSWORD': db_pass,