summaryrefslogtreecommitdiff
path: root/eggs/djangorecipe-0.20-py2.6.egg/djangorecipe/manage.py
diff options
context:
space:
mode:
authorNishanth Amuluru2011-01-11 22:41:51 +0530
committerNishanth Amuluru2011-01-11 22:41:51 +0530
commitb03203c8cb991c16ac8a3d74c8c4078182d0bb48 (patch)
tree7cf13b2deacbfaaec99edb431b83ddd5ea734a52 /eggs/djangorecipe-0.20-py2.6.egg/djangorecipe/manage.py
parent0c50203cd9eb94b819883c3110922e873f003138 (diff)
downloadpytask-b03203c8cb991c16ac8a3d74c8c4078182d0bb48.tar.gz
pytask-b03203c8cb991c16ac8a3d74c8c4078182d0bb48.tar.bz2
pytask-b03203c8cb991c16ac8a3d74c8c4078182d0bb48.zip
removed all the buildout files
Diffstat (limited to 'eggs/djangorecipe-0.20-py2.6.egg/djangorecipe/manage.py')
-rw-r--r--eggs/djangorecipe-0.20-py2.6.egg/djangorecipe/manage.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/eggs/djangorecipe-0.20-py2.6.egg/djangorecipe/manage.py b/eggs/djangorecipe-0.20-py2.6.egg/djangorecipe/manage.py
deleted file mode 100644
index 6a61411..0000000
--- a/eggs/djangorecipe-0.20-py2.6.egg/djangorecipe/manage.py
+++ /dev/null
@@ -1,16 +0,0 @@
-from django.core import management
-
-def main(settings_file):
- try:
- mod = __import__(settings_file)
- components = settings_file.split('.')
- for comp in components[1:]:
- mod = getattr(mod, comp)
-
- except ImportError, e:
- import sys
- sys.stderr.write("Error loading the settings module '%s': %s"
- % (settings_file, e))
- return sys.exit(1)
-
- management.execute_manager(mod)