From 6f0bc3d02b2ff34fa256f214915ce4967b91e09e Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 9 Sep 2007 17:21:36 +0000 Subject: [PATCH] Fixed #5280 -- Fixed typo in docs/modpython.txt. Thanks, nsteinmetz@gmail.com git-svn-id: http://code.djangoproject.com/svn/django/trunk@6071 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/modpython.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modpython.txt b/docs/modpython.txt index 5a1a3f0506..cbed0ee8c3 100644 --- a/docs/modpython.txt +++ b/docs/modpython.txt @@ -78,7 +78,7 @@ you have some applications under ``/usr/local/django-apps/`` (for example, ``DJANGO_SETTINGS_MODULE`` as in the above example. In this case, you would need to write your ``PythonPath`` directive as:: - PythonPath "['/var/production/django-apps/', '/var/www'] + sys.path" + PythonPath "['/usr/local/django-apps/', '/var/www'] + sys.path" With this path, ``import weblog`` and ``import mysite.settings`` will both work. If you had ``import blogroll`` in your code somewhere and ``blogroll``