Skip to content

Commit

Permalink
Fixed #2372 -- manage.py runfcgi no longer ignore LANGUAGE_CODE. Than…
Browse files Browse the repository at this point in the history
…ks, ludo@qix.it

git-svn-id: http://code.djangoproject.com/svn/django/trunk@3569 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Aug 12, 2006
1 parent 9354cfb commit 20070d9
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion django/core/management.py
Expand Up @@ -1142,7 +1142,14 @@ def dbshell():
dbshell.args = ""

def runfcgi(args):
"""Run this project as a FastCGI application. requires flup."""
"Runs this project as a FastCGI application. Requires flup."
from django.conf import settings
from django.utils import translation
# Activate the current language, because it won't get activated later.
try:
translation.activate(settings.LANGUAGE_CODE)
except AttributeError:
pass
from django.core.servers.fastcgi import runfastcgi
runfastcgi(args)
runfcgi.args = '[various KEY=val options, use `runfcgi help` for help]'
Expand Down

0 comments on commit 20070d9

Please sign in to comment.