diff options
author | Raymond Hettinger <python@rcn.com> | 2004-02-08 19:24:18 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2004-02-08 19:24:18 (GMT) |
commit | ce9b4714efc86c098d677375922afb49a1877dbe (patch) | |
tree | 9163204aed28f473ad2a151b0590cd1b4a8f8989 | |
parent | b32e640489f179f956437811497b19d2fa3c33f1 (diff) | |
download | cpython-ce9b4714efc86c098d677375922afb49a1877dbe.zip cpython-ce9b4714efc86c098d677375922afb49a1877dbe.tar.gz cpython-ce9b4714efc86c098d677375922afb49a1877dbe.tar.bz2 |
SF patch #880552: Fix typo in usage message(prechm.py)
(Contributed by George Yoshida.)
* Also convert tabs to spaces.
-rw-r--r-- | Doc/tools/prechm.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/tools/prechm.py b/Doc/tools/prechm.py index 0367bda..adbebc8 100644 --- a/Doc/tools/prechm.py +++ b/Doc/tools/prechm.py @@ -23,7 +23,7 @@ import getopt import cgi usage_mode = ''' -Usage: make_chm.py [-c] [-k] [-p] [-v 1.5[.x]] filename +Usage: pre_chm.py [-c] [-k] [-p] [-v 1.5[.x]] filename -c: does not build filename.hhc (Table of Contents) -k: does not build filename.hhk (Index) -p: does not build filename.hhp (Project File) @@ -93,8 +93,8 @@ contents_header = '''\ <!-- Sitemap 1.0 --> </HEAD><BODY> <OBJECT type="text/site properties"> - <param name="Window Styles" value="0x801227"> - <param name="ImageType" value="Folder"> + <param name="Window Styles" value="0x801227"> + <param name="ImageType" value="Folder"> </OBJECT> <UL> ''' |