summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--askbot/deployment/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/deployment/__init__.py b/askbot/deployment/__init__.py
index 5477b284..0dbe58c6 100644
--- a/askbot/deployment/__init__.py
+++ b/askbot/deployment/__init__.py
@@ -152,7 +152,7 @@ def deploy_askbot(options):
create_new_project = False
if os.path.exists(options['dir_name']):
if path_utils.has_existing_django_project(options['dir_name']):
- create_new_project = bool(options.force)
+ create_new_project = bool(options['force'])
else:
create_new_project = True
else: