public
Description: college football app
Homepage: http://www.fumblerooski.org/
Clone URL: git://github.com/dwillis/fumblerooski.git
Derek Willis (author)
Thu Nov 05 10:17:58 -0800 2009
commit  934bc9878439b45bce72e9e224a1fbc138d04953
tree    d5818d1a467f118d95f1af56e5ddca8594a6d0f4
parent  e8541b94d1c727079465f98661caa47c7cc2a229
fumblerooski / manage.py
100755 12 lines (10 sloc) 0.546 kb
1
2
3
4
5
6
7
8
9
10
11
12
#!/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)