summaryrefslogtreecommitdiffstats
path: root/manage.py
diff options
context:
space:
mode:
authorChris Church <chris@ninemoreminutes.com>2013-05-22 00:20:26 +0200
committerChris Church <chris@ninemoreminutes.com>2013-05-22 00:20:26 +0200
commitaeac739735f4b503e1e32acbbbe7356c49d212c2 (patch)
treeee771abca43d29c4cdb11654e69582b43136e935 /manage.py
parentUpdate to production settings to fail if no config found, updates to build sc... (diff)
downloadawx-aeac739735f4b503e1e32acbbbe7356c49d212c2.tar.xz
awx-aeac739735f4b503e1e32acbbbe7356c49d212c2.zip
Major rename of package from lib to ansibleworks.
Diffstat (limited to 'manage.py')
-rwxr-xr-xmanage.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/manage.py b/manage.py
index 7b4c1dc3c1..cbaec7c658 100755
--- a/manage.py
+++ b/manage.py
@@ -1,10 +1,14 @@
#!/usr/bin/env python
+# Copyright (c) 2013 AnsibleWorks, Inc.
+# All Rights Reserved.
+
import os
if __name__ == '__main__':
# Since this manage.py will only be used when running from a source
# checkout, default to using the development settings.
- os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'lib.settings.development')
- from lib import manage
+ os.environ.setdefault('DJANGO_SETTINGS_MODULE',
+ 'ansibleworks.settings.development')
+ from ansibleworks import manage
manage()