summaryrefslogtreecommitdiff
path: root/Doc/tools
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2001-01-30 22:30:01 +0000
committerFred Drake <fdrake@acm.org>2001-01-30 22:30:01 +0000
commit1ce6378deb42a81ad3d92816bb7d8a4fef38eeaa (patch)
treea91252f4b9ff8555f27abbe2e6cc33a939cb43fd /Doc/tools
parente33c4152bdd1f0dd2b52a2b4d4fd20e1d4205fd1 (diff)
downloadcpython-1ce6378deb42a81ad3d92816bb7d8a4fef38eeaa.tar.gz
Make HTML the default output format, since that is what people actually
want most of the time.
Diffstat (limited to 'Doc/tools')
-rwxr-xr-xDoc/tools/mkhowto6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/tools/mkhowto b/Doc/tools/mkhowto
index e832f9a5bd..d326a0940b 100755
--- a/Doc/tools/mkhowto
+++ b/Doc/tools/mkhowto
@@ -3,8 +3,8 @@
"""usage: %(program)s [options...] file ...
Options specifying formats to build:
- --html HyperText Markup Language
- --pdf Portable Document Format (default)
+ --html HyperText Markup Language (default)
+ --pdf Portable Document Format
--ps PostScript
--dvi 'DeVice Indepentent' format from TeX
--text ASCII text (requires lynx)
@@ -97,7 +97,7 @@ class Options:
up_link = None
up_title = None
#
- DEFAULT_FORMATS = ("pdf",)
+ DEFAULT_FORMATS = ("html",)
ALL_FORMATS = ("dvi", "html", "pdf", "ps", "text")
def __init__(self):