From: Heikki Junes Date: Wed, 23 Jul 2003 22:57:44 +0000 (+0000) Subject: polish X-Git-Tag: release/1.7.30~107 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=e022baf27fb9e592dbd075e2081c88e0f1f962d1;p=lilypond.git polish --- diff --git a/ChangeLog b/ChangeLog index d704ec6df0..008c9144de 100644 --- a/ChangeLog +++ b/ChangeLog @@ -12,6 +12,8 @@ * Documentation/topdocs/INSTALL.texi: update links. + * buildscripts/mutopia-index.py: polish. + 2003-07-23 Han-Wen Nienhuys * scripts/convert-ly.py (FatalConversionError.conv): rule for pedal-style diff --git a/buildscripts/mutopia-index.py b/buildscripts/mutopia-index.py index b57e9a092e..4eb80f688d 100644 --- a/buildscripts/mutopia-index.py +++ b/buildscripts/mutopia-index.py @@ -162,9 +162,9 @@ def gen_list(inputs, filename): size=os.stat(filename)[stat.ST_SIZE] kB=(size + 512) / 1024 if kB: - l.write (' (%s %dkB)' % (type, kB)) + l.write (' (%s %d kB)' % (type, kB)) else: - l.write (' (%s %dcharacters)' % (type, size)) + l.write (' (%s %d characters)' % (type, size)) pictures = ['jpeg', 'png', 'xpm'] l.write ('\n') @@ -174,8 +174,8 @@ def gen_list(inputs, filename): if not file_exist_b (f): break list_item(f, 'See a picture of page %d' % pageno, 'png') - list_item(base + '.pdf', 'Print ', 'PDF') - list_item(base + '.ps.gz', 'Print ', 'gzipped PostScript') + list_item(base + '.pdf', 'Print', 'PDF') + list_item(base + '.ps.gz', 'Print', 'gzipped PostScript') list_item(base + '.midi', 'Listen', 'MIDI') list.write ("\n");