summaryrefslogtreecommitdiff
path: root/planet/planetadmin/manage.py
diff options
context:
space:
mode:
authorMagnus Hagander2008-11-03 15:53:57 +0000
committerMagnus Hagander2008-11-03 15:53:57 +0000
commitfd7d50d6ccaaabfb1fae16c1c10c0815799ad376 (patch)
tree846490b8cb4b5609c8396facc48771b7658c892b /planet/planetadmin/manage.py
parent9ab5977ef92388ce5371306583199d59dc94461e (diff)
Initial version of django-based tool to administer blog registrations,
both as a subscriber directly and as a planet administrator. More to be done, not in the least in the design department, but getting it in there so I don't delete it - and so that others can work on the all-important design stuff! git-svn-id: file:///Users/dpage/pgweb/svn-repo/trunk@2261 8f5c7a92-453e-0410-a47f-ad33c8a6b003
Diffstat (limited to 'planet/planetadmin/manage.py')
-rwxr-xr-xplanet/planetadmin/manage.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/planet/planetadmin/manage.py b/planet/planetadmin/manage.py
new file mode 100755
index 00000000..5e78ea97
--- /dev/null
+++ b/planet/planetadmin/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)