diff options
| author | Yuval Adam <yuval@segmanta.com> | 2014-03-20 17:49:16 +0200 |
|---|---|---|
| committer | Yuval Adam <yuval@segmanta.com> | 2014-03-20 17:49:16 +0200 |
| commit | 75f93a3f7854a7383febd047391e2bfd4caceee0 (patch) | |
| tree | d5e634ef292c6b84acacc3982dbcaa0d300a346e /examples/libcloud_project/manage.py | |
Diffstat (limited to 'examples/libcloud_project/manage.py')
| -rw-r--r-- | examples/libcloud_project/manage.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/libcloud_project/manage.py b/examples/libcloud_project/manage.py new file mode 100644 index 0000000..3e4eedc --- /dev/null +++ b/examples/libcloud_project/manage.py @@ -0,0 +1,14 @@ +#!/usr/bin/env python +from django.core.management import execute_manager +import imp +try: + imp.find_module('settings') # Assumed to be in the same directory. +except ImportError: + import sys + sys.stderr.write("Error: Can't find the file 'settings.py' in the directory containing %r. It appears you've customized things.\nYou'll have to run django-admin.py, passing it your settings module.\n" % __file__) + sys.exit(1) + +import settings + +if __name__ == "__main__": + execute_manager(settings) |
