Fixed #3935 -- Fixed typo in docs/modpython.txt. Thanks, alexis@smirnov.ca

git-svn-id: http://code.djangoproject.com/svn/django/trunk@4958 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
Adrian Holovaty 2007-04-09 01:06:09 +00:00
parent 7fd887b2d7
commit 0498eb30cb
1 changed files with 2 additions and 2 deletions

View File

@ -160,7 +160,7 @@ If, however, you have no option but to serve media files on the same Apache
``VirtualHost`` as Django, here's how you can turn off mod_python for a
particular part of the site::
<Location "/media/">
<Location "/media">
SetHandler None
</Location>
@ -177,7 +177,7 @@ the ``media`` subdirectory and any URL that ends with ``.jpg``, ``.gif`` or
SetEnv DJANGO_SETTINGS_MODULE mysite.settings
</Location>
<Location "media">
<Location "/media">
SetHandler None
</Location>