From: Reinhold Kainhofer Date: Mon, 21 Jul 2008 20:13:36 +0000 (+0200) Subject: texi2html: Remove debug output from extract_texi_filenames.py X-Git-Tag: release/2.11.58-1~32^2~104 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=f7673a974f1ecc3809ed8f7671daf6f1cafd5642;p=lilypond.git texi2html: Remove debug output from extract_texi_filenames.py --- diff --git a/buildscripts/extract_texi_filenames.py b/buildscripts/extract_texi_filenames.py index 6c7b60911d..f074436e05 100755 --- a/buildscripts/extract_texi_filenames.py +++ b/buildscripts/extract_texi_filenames.py @@ -116,7 +116,6 @@ def process_sections (filename, page): # Write out the cached values to the file and start a new section: if this_title != '': f.write (this_title + "\t" + this_filename + "\t" + this_anchor + "\n") - print (this_title + "\t" + this_filename + "\t" + this_anchor) this_title = remove_texinfo (sec[1]) this_anchor = create_texinfo_anchor (sec[1]) elif sec[0] == "translationof": @@ -135,7 +134,6 @@ def process_sections (filename, page): if this_title != '': f.write (this_title + "\t" + this_filename + "\t" + this_anchor + "\n") - print (this_title + "\t" + this_filename + "\t" + this_anchor) f.close ()