aboutsummaryrefslogtreecommitdiffstats
path: root/example/manage.py
diff options
context:
space:
mode:
authorRob Hudson2010-02-11 14:21:27 -0800
committerRob Hudson2010-02-11 14:21:27 -0800
commit960d1cf38bb512794a29d0e49d9b7447602861d9 (patch)
treeaa9abb3cfc897fb5f184e371f33f7b4da8f46014 /example/manage.py
parented74a1c9fcc48855e4f3cb28db55d91fa9d1a089 (diff)
parent9327cd86b2c9f1db0108c97e630c6d5610e65b0d (diff)
downloaddjango-debug-toolbar-960d1cf38bb512794a29d0e49d9b7447602861d9.tar.bz2
Merge branch 'master' into js_closure
Diffstat (limited to 'example/manage.py')
-rwxr-xr-xexample/manage.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/example/manage.py b/example/manage.py
new file mode 100755
index 0000000..5e78ea9
--- /dev/null
+++ b/example/manage.py
@@ -0,0 +1,11 @@
+#!/usr/bin/env python
+from django.core.management import execute_manager
+try:
+ import 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(If the file settings.py does indeed exist, it's causing an ImportError somehow.)\n" % __file__)
+ sys.exit(1)
+
+if __name__ == "__main__":
+ execute_manager(settings)