Replace manage.py script with new script generated by Django 1.6

- Legacy-Id: 6876
This commit is contained in:
Ole Laursen 2013-12-11 15:50:14 +00:00
parent b92a49b216
commit b2d69c5cbd

View file

@ -1,27 +1,10 @@
#!/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")
import os
import sys
path = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
if not path in sys.path:
sys.path.insert(0, path)
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)
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)