Statistics
| Branch: | Tag: | Revision:

root / manage.py @ 4889a219

History | View | Annotate | Download (542 Bytes)

1 18b2e562 Leonidas Poulopoulos
#!/usr/bin/python
2 18b2e562 Leonidas Poulopoulos
from django.core.management import execute_manager
3 18b2e562 Leonidas Poulopoulos
try:
4 18b2e562 Leonidas Poulopoulos
    import settings # Assumed to be in the same directory.
5 18b2e562 Leonidas Poulopoulos
except ImportError:
6 18b2e562 Leonidas Poulopoulos
    import sys
7 18b2e562 Leonidas Poulopoulos
    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__)
8 18b2e562 Leonidas Poulopoulos
    sys.exit(1)
9 18b2e562 Leonidas Poulopoulos
10 18b2e562 Leonidas Poulopoulos
if __name__ == "__main__":
11 18b2e562 Leonidas Poulopoulos
    execute_manager(settings)