]> git.donarmstrong.com Git - lilypond.git/commitdiff
Lilypond-book: Add more readable progress output, so one can see where things go...
authorReinhold Kainhofer <reinhold@kainhofer.com>
Thu, 4 Aug 2011 17:41:55 +0000 (19:41 +0200)
committerReinhold Kainhofer <reinhold@kainhofer.com>
Thu, 18 Aug 2011 20:29:19 +0000 (22:29 +0200)
python/book_snippets.py

index b4849a0dbba79c2953c543a5dbe66138677ad824..a65fe4d0b775a5e1c7f5619afaa0b9dbce07f1da 100644 (file)
@@ -739,7 +739,7 @@ printing diff against existing file." % filename)
         """Pass input through cmd, and return the result."""
 
         if self.global_options.verbose:
-            progress (_ ("Opening filter `%s'\n") % cmd)
+            progress (_ ("Running through filter `%s'\n") % cmd)
 
         # TODO: Use Popen once we resolve the problem with msvcrt in Windows:
         (stdin, stdout, stderr) = os.popen3 (cmd)
@@ -880,6 +880,7 @@ class MusicXMLFileSnippet (LilypondFileSnippet):
             option_list.append ('--compressed')
             self.compressed = True
         opts = " ".join (option_list)
+        progress (_ ("Converting MusicXML file `%s'...\n") % self.filename)
 
         ly_code = self.filter_pipe (self.contents, 'musicxml2ly %s --out=- - ' % opts)
         return ly_code