Index: docs/modpython.txt
===================================================================
--- docs/modpython.txt	(revision 5559)
+++ docs/modpython.txt	(working copy)
@@ -50,8 +50,8 @@
 whereas ``<Location>`` points at places in the URL structure of a Web site.
 ``<Directory>`` would be meaningless here.
 
-Also, if you've manually altered your ``PYTHONPATH`` to put your Django project
-on it, you'll need to tell mod_python:
+Also, if your Django project is not on the default ``PYTHONPATH``, you'll have
+to tell mod_python where it is:
 
 .. parsed-literal::
 
@@ -60,7 +60,7 @@
         PythonHandler django.core.handlers.modpython
         SetEnv DJANGO_SETTINGS_MODULE mysite.settings
         PythonDebug On
-        **PythonPath "['/path/to/project'] + sys.path"**
+        **PythonPath "['/path/to/project/parent/dir'] + sys.path"**
     </Location>
 
 .. caution::
