adapt manage.py to django 1.4

This commit is contained in:
Benjamin Dauvergne 2013-03-06 18:35:39 +01:00
parent 459727b1bd
commit 7ac1e30130
1 changed files with 6 additions and 13 deletions

View File

@ -1,19 +1,12 @@
#!/usr/bin/env python
import sys
import os
from django.core.management import execute_manager
import os, sys
sys.path.append(os.path.dirname(__file__))
sys.path.append(os.path.join(os.path.dirname(__file__), 'authentic2', 'vendor'))
try:
import authentic2.settings as 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)
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "authentic2.settings")
from django.core.management import execute_from_command_line
execute_from_command_line(sys.argv)