diff options
author | Petri Lehtinen <petri@digip.org> | 2013-02-23 18:26:56 (GMT) |
---|---|---|
committer | Petri Lehtinen <petri@digip.org> | 2013-02-23 18:27:49 (GMT) |
commit | 9f74c6cf7d0fd6188194e7bba8f059843b9c3c89 (patch) | |
tree | 428d7473b21eb3eb0d728eab38c90490e455ec8b /Doc/library/cgi.rst | |
parent | 8b945148e3f98b9c6c51bfaa830e779979713b82 (diff) | |
download | cpython-9f74c6cf7d0fd6188194e7bba8f059843b9c3c89.zip cpython-9f74c6cf7d0fd6188194e7bba8f059843b9c3c89.tar.gz cpython-9f74c6cf7d0fd6188194e7bba8f059843b9c3c89.tar.bz2 |
Issue #8890: Stop advertising an insecure use of /tmp in docs
Diffstat (limited to 'Doc/library/cgi.rst')
-rw-r--r-- | Doc/library/cgi.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/cgi.rst b/Doc/library/cgi.rst index 21509d1..478c95a 100644 --- a/Doc/library/cgi.rst +++ b/Doc/library/cgi.rst @@ -79,7 +79,7 @@ program to users of your script, you can have the reports saved to files instead, with code like this:: import cgitb - cgitb.enable(display=0, logdir="/tmp") + cgitb.enable(display=0, logdir="/path/to/logdir") It's very helpful to use this feature during script development. The reports produced by :mod:`cgitb` provide information that can save you a lot of time in |