diff options
author | Nishanth Amuluru | 2011-01-08 12:31:53 +0530 |
---|---|---|
committer | Nishanth Amuluru | 2011-01-08 12:31:53 +0530 |
commit | be7b592967d7c406676b0cc7e5b2ff9767ecb169 (patch) | |
tree | bdf2efbfdf7a3797e099268d20d35aa926c731b7 | |
parent | 5f565327267a9d7712bf2f299828785caf953631 (diff) | |
download | pytask-be7b592967d7c406676b0cc7e5b2ff9767ecb169.tar.gz pytask-be7b592967d7c406676b0cc7e5b2ff9767ecb169.tar.bz2 pytask-be7b592967d7c406676b0cc7e5b2ff9767ecb169.zip |
removed unwanted manage file
-rwxr-xr-x | manage.py | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/manage.py b/manage.py deleted file mode 100755 index 5e78ea9..0000000 --- a/manage.py +++ /dev/null @@ -1,11 +0,0 @@ -#!/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) |