diff options
author | Chris Church <chris@ninemoreminutes.com> | 2013-05-22 00:20:26 +0200 |
---|---|---|
committer | Chris Church <chris@ninemoreminutes.com> | 2013-05-22 00:20:26 +0200 |
commit | aeac739735f4b503e1e32acbbbe7356c49d212c2 (patch) | |
tree | ee771abca43d29c4cdb11654e69582b43136e935 /manage.py | |
parent | Update to production settings to fail if no config found, updates to build sc... (diff) | |
download | awx-aeac739735f4b503e1e32acbbbe7356c49d212c2.tar.xz awx-aeac739735f4b503e1e32acbbbe7356c49d212c2.zip |
Major rename of package from lib to ansibleworks.
Diffstat (limited to 'manage.py')
-rwxr-xr-x | manage.py | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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() |