21 lines
827 B
Python
Executable file
21 lines
827 B
Python
Executable file
#!/usr/bin/env python
|
|
# Copyright The IETF Trust 2007, All Rights Reserved
|
|
|
|
# Don't complain about these DeprecationWarnings (we still
|
|
# want to see others, though)
|
|
import warnings
|
|
warnings.filterwarnings("ignore", message="the sets module is deprecated")
|
|
warnings.filterwarnings("ignore", message="the md5 module is deprecated; use hashlib instead")
|
|
warnings.filterwarnings("ignore", message="the sha module is deprecated; use the hashlib module instead")
|
|
|
|
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: Cannot find 'settings.py' or 'settings_local.py'.\nUsually these are in the directory containing %r.\n" % __file__)
|
|
sys.exit(1)
|
|
|
|
if __name__ == "__main__":
|
|
execute_manager(settings)
|