summaryrefslogtreecommitdiff
path: root/docs/modpython.txt
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2007-09-14 08:49:02 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2007-09-14 08:49:02 +0000
commitfa5e935af02eed26d8e607ed55e3ba3500811601 (patch)
treeb902da3057e2e2cfa5e6886cbb4ec5d8e0056a52 /docs/modpython.txt
parentc040f1cc926dfe899eeffef4c3f24551f5d8b3b0 (diff)
Fixed #5280 -- Minor typo in modpython docs. Thanks for the attention to detail, nsteinmetz@gmail.com.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@6182 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/modpython.txt')
-rw-r--r--docs/modpython.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/modpython.txt b/docs/modpython.txt
index cbed0ee8c3..4a8c169a51 100644
--- a/docs/modpython.txt
+++ b/docs/modpython.txt
@@ -83,7 +83,7 @@ need to write your ``PythonPath`` directive as::
With this path, ``import weblog`` and ``import mysite.settings`` will both
work. If you had ``import blogroll`` in your code somewhere and ``blogroll``
lived under the ``weblog/`` directory, you would *also* need to add
-``/var/production/django-apps/weblog/`` to your ``PythonPath``. Remember: the
+``/usr/local/django-apps/weblog/`` to your ``PythonPath``. Remember: the
**parent directories** of anything you import directly must be on the Python
path.