]> git.donarmstrong.com Git - lilypond.git/blobdiff - python/fontextract.py
(side_position): reach stem via dots->
[lilypond.git] / python / fontextract.py
index fc4022e32f2d2f7b19fd01e763566fb9ebdfbdc9..1233921be8b8c1c3b65325256d864abbb09bfd0c 100644 (file)
@@ -81,7 +81,6 @@ def extract_fonts_from_file (extract_from_this, font_dict, filename):
                                          % (string.join (extract_from_this, ', '), filename))
 
 def write_extracted_fonts (output_file_name, font_dict):
-
        if verbose:
                sys.stderr.write( _('Writing fonts to %s') % output_file_name + '\n')
        output = open (output_file_name, 'w')
@@ -98,7 +97,7 @@ def write_extracted_fonts (output_file_name, font_dict):
        for (k,v) in font_dict.items ():
                output.write ('\n%%%%BeginFont: %s\n' % k)
                output.write (v)
-               output.write ('\n%%%%EndFont')
+               output.write ('\n%%EndFont')
 
 
 def extract_fonts (output_file_name, input_files):