summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2011-09-10 21:29:21 +0000
committerAlex Gaynor <alex.gaynor@gmail.com>2011-09-10 21:29:21 +0000
commite95d0afe9e79f1864ea53e98007ca225a218417b (patch)
tree5bdfccb8b5ab3684999d3b372bc4563c58d2b193
parente130dc327548d143c3ee27af8c7e069ba772f3e7 (diff)
Fixed #16810, corrected a bad docstring. Thanks to kenkam for the patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16790 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--django/core/handlers/base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/handlers/base.py b/django/core/handlers/base.py
index a6c8044a06..baf3baa5f0 100644
--- a/django/core/handlers/base.py
+++ b/django/core/handlers/base.py
@@ -242,7 +242,7 @@ def get_script_name(environ):
Returns the equivalent of the HTTP request's SCRIPT_NAME environment
variable. If Apache mod_rewrite has been used, returns what would have been
the script name prior to any rewriting (so it's the script name as seen
- from the client's perspective), unless DJANGO_USE_POST_REWRITE is set (to
+ from the client's perspective), unless FORCE_SCRIPT_NAME is set (to
anything).
"""
from django.conf import settings