diff options
author | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-07-24 23:56:50 -0400 |
---|---|---|
committer | Aamir Khan <syst3m.w0rm@gmail.com> | 2012-07-24 23:56:50 -0400 |
commit | f6147a0dbb5c8ad1110a1b0581da11b98e98b2a5 (patch) | |
tree | 1c2c849b12113e4a45191345427e2fd9744bef6a /manage.py | |
parent | 808998d67c32a7cf000095f8dc02b27683ae24ee (diff) | |
download | hyperkitty-f6147a0dbb5c8ad1110a1b0581da11b98e98b2a5.tar.gz hyperkitty-f6147a0dbb5c8ad1110a1b0581da11b98e98b2a5.tar.xz hyperkitty-f6147a0dbb5c8ad1110a1b0581da11b98e98b2a5.zip |
Removed manage.py & settings.py from django application
Diffstat (limited to 'manage.py')
-rw-r--r-- | manage.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/manage.py b/manage.py deleted file mode 100644 index 3e4eedc..0000000 --- a/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) |