aboutsummaryrefslogtreecommitdiff
path: root/manage.py
diff options
context:
space:
mode:
authorJames Tunnicliffe <james.tunnicliffe@linaro.org>2012-06-26 14:51:02 +0100
committerJames Tunnicliffe <james.tunnicliffe@linaro.org>2012-06-26 14:51:02 +0100
commite5d97a8c79250e4951211abf43c41751ef6e7233 (patch)
treec1169523c6c36169d3706ff0331c318aa0091bf2 /manage.py
parentf8748b6ca32cc200362ddd39360f947f26d6908c (diff)
Moved files out od django-rewrite.
Combines .bzrignore files Deleted django-rewrite directory.
Diffstat (limited to 'manage.py')
-rw-r--r--manage.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/manage.py b/manage.py
new file mode 100644
index 0000000..3e4eedc
--- /dev/null
+++ b/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)