From aeac739735f4b503e1e32acbbbe7356c49d212c2 Mon Sep 17 00:00:00 2001 From: Chris Church Date: Tue, 21 May 2013 18:20:26 -0400 Subject: Major rename of package from lib to ansibleworks. --- manage.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'manage.py') 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() -- cgit v1.2.3