summaryrefslogtreecommitdiffstats
path: root/askbot/deployment
diff options
context:
space:
mode:
authorTyler Mandry <tmandry@gmail.com>2013-03-10 00:46:24 -0600
committerTyler Mandry <tmandry@gmail.com>2013-03-10 00:46:24 -0600
commite3bc37cb09d29dbca0949d979ff98dcefac1649a (patch)
treea24823c88610cdfc604ad47c10a4cdf25c4c5a97 /askbot/deployment
parent3bff694afc5b2b7709bf98de1a6c3dcc5c51ccf4 (diff)
downloadaskbot-e3bc37cb09d29dbca0949d979ff98dcefac1649a.tar.gz
askbot-e3bc37cb09d29dbca0949d979ff98dcefac1649a.tar.bz2
askbot-e3bc37cb09d29dbca0949d979ff98dcefac1649a.zip
Fix bug causing askbot-setup script to never accept a sqlite filename.
Diffstat (limited to 'askbot/deployment')
-rw-r--r--askbot/deployment/__init__.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/askbot/deployment/__init__.py b/askbot/deployment/__init__.py
index 1ba5c202..5477b284 100644
--- a/askbot/deployment/__init__.py
+++ b/askbot/deployment/__init__.py
@@ -217,6 +217,8 @@ def collect_missing_options(options_dict):
print 'name %s cannot be used for the database name' % value
elif value == path_utils.LOG_DIR_NAME:
print 'name %s cannot be used for the database name' % value
+ else:
+ database_file_name = value
if database_file_name:
options_dict['database_name'] = database_file_name