diff options
author | Prabhu Ramachandran | 2015-05-27 22:20:45 +0530 |
---|---|---|
committer | Prabhu Ramachandran | 2015-05-27 22:20:45 +0530 |
commit | f3521eeb7dc05e4c529f8e50724ca5b3b8cc3f83 (patch) | |
tree | bf74cd706cad667f3b41a3e09d756fb9e73e898c /testapp/manage.py | |
parent | a83b57aee80959f11f96ad6a3a738c9fac906e26 (diff) | |
parent | 6f04127b10fad666a689b18db6a5a9aa1270d739 (diff) | |
download | online_test-f3521eeb7dc05e4c529f8e50724ca5b3b8cc3f83.tar.gz online_test-f3521eeb7dc05e4c529f8e50724ca5b3b8cc3f83.tar.bz2 online_test-f3521eeb7dc05e4c529f8e50724ca5b3b8cc3f83.zip |
Merge pull request #50 from hardythe1/remotes/origin/RemoveBuildout
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) |