diff options
author | hardythe1 | 2015-05-27 15:03:08 +0530 |
---|---|---|
committer | hardythe1 | 2015-05-27 15:03:08 +0530 |
commit | a026ccc62edff3531b8ce0ea2a613ccde69c1642 (patch) | |
tree | 88809a4877ed8c762ae1343b75f778a9692062a9 /testapp/manage.py | |
parent | a83b57aee80959f11f96ad6a3a738c9fac906e26 (diff) | |
download | online_test-a026ccc62edff3531b8ce0ea2a613ccde69c1642.tar.gz online_test-a026ccc62edff3531b8ce0ea2a613ccde69c1642.tar.bz2 online_test-a026ccc62edff3531b8ce0ea2a613ccde69c1642.zip |
Removed Buildout and related files & made a standard Django project
Diffstat (limited to 'testapp/manage.py')
-rwxr-xr-x | testapp/manage.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/testapp/manage.py b/testapp/manage.py deleted file mode 100755 index 3e4eedc..0000000 --- a/testapp/manage.py +++ /dev/null @@ -1,14 +0,0 @@ -#!/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) |