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:58:14 -0400 |
| commit | c530a63429c7ebf92c29c76e1926d441fa0295d0 (patch) | |
| tree | fe85118efe9539b247a35d7357de2b7fde9da7dd | |
| parent | b718e292ac7d2e6ea9764aa618f913ead8b8bbb1 (diff) | |
[1.6.x] Fixed #22619 -- Corrected description of os.path.
Thanks Collin Anderson for the report.
Backport of a1be7237ca from master
| -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 7cee5f5bd0..73ad0b9f6f 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:: |
