diff options
author | Fred Drake <fdrake@acm.org> | 2002-02-04 21:15:42 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-02-04 21:15:42 (GMT) |
commit | baf43c5036f2811b46dd1cdd2a0341f022f8ec49 (patch) | |
tree | 3838edd54cb5172d7fab97863ff1980daadf3e0c /Doc/tools | |
parent | 210d3cca860b726db5dc40fb5c7cd0f17dd47980 (diff) | |
download | cpython-baf43c5036f2811b46dd1cdd2a0341f022f8ec49.zip cpython-baf43c5036f2811b46dd1cdd2a0341f022f8ec49.tar.gz cpython-baf43c5036f2811b46dd1cdd2a0341f022f8ec49.tar.bz2 |
When linking to an index page, explicitly name index.html instead of
using "./". The later does not work nicely when browsing docs on a local
disk (as in the installed docs on Windows).
Diffstat (limited to 'Doc/tools')
-rw-r--r-- | Doc/tools/support.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tools/support.py b/Doc/tools/support.py index bfd86ce..187ac21 100644 --- a/Doc/tools/support.py +++ b/Doc/tools/support.py @@ -25,7 +25,7 @@ class Options: outputfile = "-" columns = 1 letters = 0 - uplink = "./" + uplink = "index.html" uptitle = "Python Documentation Index" def __init__(self): |