Index: docs/modpython.txt
===================================================================
--- docs/modpython.txt  (revisjon 5257)
+++ docs/modpython.txt  (arbeidskopi)
@@ -53,19 +53,21 @@
 Also, if you've manually altered your ``PYTHONPATH`` to put your Django project
 on it, you'll need to tell mod_python::
 
-    PythonPath "['/path/to/project'] + sys.path"
+    PythonPath "['/your/python/path'] + sys.path"
 
+You should note that this is the path to the parent dir of where your project live.
+
 .. caution::
 
     If you're using Windows, remember that the path will contain backslashes.
     This string is passed through Python's string parser twice, so you need to
     escape each backslash **twice**::
 
-        PythonPath "['c:\\\\path\\\\to\\\\project'] + sys.path"
+        PythonPath "['c:\\\\your\\\\python\\\\path'] + sys.path"
 
     Or, use raw strings::
 
-        PythonPath "[r'c:\\path\\to\\project'] + sys.path"
+        PythonPath "[r'c:\\your\\python\\path'] + sys.path"
 
 You can also add directives such as ``PythonAutoReload Off`` for performance.
 See the `mod_python documentation`_ for a full list of options.