diff options
author | Georg Brandl <georg@python.org> | 2008-02-20 19:43:14 +0000 |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2008-02-20 19:43:14 +0000 |
commit | 92271705fd5337d65b3803eade0100d8e311a96d (patch) | |
tree | 96829d50aaf62ea8be4800ce940daa487b06f78c /sphinx/htmlhelp.py | |
parent | 8dc8280c3c054561d0ea77681d125c32a5168690 (diff) | |
download | sphinx-git-92271705fd5337d65b3803eade0100d8e311a96d.tar.gz |
Fix the HTML help builder.
Diffstat (limited to 'sphinx/htmlhelp.py')
-rw-r--r-- | sphinx/htmlhelp.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sphinx/htmlhelp.py b/sphinx/htmlhelp.py index cee41ffe1..0742dba98 100644 --- a/sphinx/htmlhelp.py +++ b/sphinx/htmlhelp.py @@ -117,7 +117,7 @@ was will with def build_hhx(builder, outdir, outname): - builder.msg('dumping stopword list...') + builder.info('dumping stopword list...') f = open(path.join(outdir, outname+'.stp'), 'w') try: for word in sorted(stopwords): @@ -125,7 +125,7 @@ def build_hhx(builder, outdir, outname): finally: f.close() - builder.msg('writing project file...') + builder.info('writing project file...') f = open(path.join(outdir, outname+'.hhp'), 'w') try: f.write(project_template % {'outname': outname, @@ -141,7 +141,7 @@ def build_hhx(builder, outdir, outname): finally: f.close() - builder.msg('writing TOC file...') + builder.info('writing TOC file...') f = open(path.join(outdir, outname+'.hhc'), 'w') try: f.write(contents_header) @@ -177,7 +177,7 @@ def build_hhx(builder, outdir, outname): finally: f.close() - builder.msg('writing index file...') + builder.info('writing index file...') f = open(path.join(outdir, outname+'.hhk'), 'w') try: f.write('<UL>\n') |