]> git.donarmstrong.com Git - lilypond.git/commitdiff
texi2html: Remove debug output from extract_texi_filenames.py
authorReinhold Kainhofer <reinhold@kainhofer.com>
Mon, 21 Jul 2008 20:13:36 +0000 (22:13 +0200)
committerReinhold Kainhofer <reinhold@kainhofer.com>
Mon, 21 Jul 2008 20:13:36 +0000 (22:13 +0200)
buildscripts/extract_texi_filenames.py

index 6c7b60911d589df1ddb8d0e1bf3c5583e8d0df87..f074436e05ce0a49d1cfa9eb081a0ae933285b01 100755 (executable)
@@ -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 ()