Ticket #16810: patch.txt

File patch.txt, 673 bytes (added by Kenneth Kam, 13 years ago)

Patch to fix error in docstring

Line 
1Index: django/core/handlers/base.py
2===================================================================
3--- django/core/handlers/base.py (revision 16784)
4+++ django/core/handlers/base.py (working copy)
5@@ -%ld,%ld +%ld,%ld @@
6 Returns the equivalent of the HTTP request's SCRIPT_NAME environment
7 variable. If Apache mod_rewrite has been used, returns what would have been
8 the script name prior to any rewriting (so it's the script name as seen
9- from the client's perspective), unless DJANGO_USE_POST_REWRITE is set (to
10+ from the client's perspective), unless FORCE_SCRIPT_NAME is set (to
11 anything).
12 """
13 from django.conf import settings
Back to Top