From fd7d50d6ccaaabfb1fae16c1c10c0815799ad376 Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Mon, 3 Nov 2008 15:53:57 +0000 Subject: 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 --- planet/planetadmin/manage.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100755 planet/planetadmin/manage.py (limited to 'planet/planetadmin/manage.py') 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) -- cgit v1.2.3