1
0
mirror of https://github.com/django/django.git synced 2025-04-21 07:44:36 +00:00

fix for startproject requiring settings

git-svn-id: http://code.djangoproject.com/svn/django/branches/i18n@1013 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Georg Bauer 2005-10-27 22:34:06 +00:00
parent e8d46cb8f1
commit de42aef09c

View File

@ -1,12 +1,15 @@
#!/usr/bin/env python
from django.core import management
from django.utils import translation
from optparse import OptionParser
import os, sys
# switch to english, because django-admin creates database content
# like permissions, and those shouldn't contain any translations
translation.activate('en-us')
try:
from django.utils import translation
translation.activate('en-us')
except:
pass
ACTION_MAPPING = {
'adminindex': management.get_admin_index,