summaryrefslogtreecommitdiffstats
path: root/askbot/deployment
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-02-09 19:50:08 -0300
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-02-09 19:50:08 -0300
commitbfc5371542b8ece86415e95ac9e4a5590cf0f8e9 (patch)
tree5cb2d9c536c27fb6896245b665b19d53a6875a0e /askbot/deployment
parent8b825cd68f075121b4aee99d8d93e82fe5d25cf9 (diff)
downloadaskbot-bfc5371542b8ece86415e95ac9e4a5590cf0f8e9.tar.gz
askbot-bfc5371542b8ece86415e95ac9e4a5590cf0f8e9.tar.bz2
askbot-bfc5371542b8ece86415e95ac9e4a5590cf0f8e9.zip
made django.wsgi to be copied by the askbot-setup script
Diffstat (limited to 'askbot/deployment')
-rw-r--r--askbot/deployment/path_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/deployment/path_utils.py b/askbot/deployment/path_utils.py
index ef260f86..caefa2a9 100644
--- a/askbot/deployment/path_utils.py
+++ b/askbot/deployment/path_utils.py
@@ -154,7 +154,7 @@ def deploy_into(directory, new_project = False, verbosity = 1, context = None):
"""
assert(isinstance(new_project, bool))
if new_project:
- copy_files = ('__init__.py', 'manage.py', 'urls.py')
+ copy_files = ('__init__.py', 'manage.py', 'urls.py', 'django.wsgi')
blank_files = ('__init__.py', 'manage.py')
if verbosity >= 1:
print 'Copying files: '