diff options
| author | Tim Graham <timograham@gmail.com> | 2014-05-12 18:56:34 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-05-12 18:56:34 -0400 |
| commit | a1be7237ca108eb2d5d669e4306e93afcc79c6cb (patch) | |
| tree | 4cf2fe3b3068b39c4e82d1e6133de953c3f19258 | |
| parent | 13087020a92afe778970f8445b8add6b167ba084 (diff) | |
Fixed #22619 -- Corrected description of os.path.
Thanks Collin Anderson for the report.
| -rw-r--r-- | docs/howto/deployment/wsgi/modwsgi.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/howto/deployment/wsgi/modwsgi.txt b/docs/howto/deployment/wsgi/modwsgi.txt index b021dda209..17497a1abd 100644 --- a/docs/howto/deployment/wsgi/modwsgi.txt +++ b/docs/howto/deployment/wsgi/modwsgi.txt @@ -219,7 +219,7 @@ If you're taking advantage of the internationalization features of Django (see ensure that the environment used to start Apache is configured to accept non-ASCII file names. If your environment is not correctly configured, you will trigger ``UnicodeEncodeError`` exceptions when calling functions like -``os.path()`` on filenames that contain non-ASCII characters. +the ones in :mod:`os.path` on filenames that contain non-ASCII characters. To avoid these problems, the environment used to start Apache should contain settings analogous to the following:: |
