]> git.donarmstrong.com Git - lilypond.git/blobdiff - scripts/abc2ly.py
Fix some bugs in the dynamic engraver and PostScript backend
[lilypond.git] / scripts / abc2ly.py
index 664d73ec481ffebf47f1f8a640bc1d0759c7a177..6121e51c6a03dbdfec1e5403ca90b701224c9e2a 100644 (file)
@@ -1,4 +1,4 @@
-#!@PYTHON@
+#!@TARGET_PYTHON@
 # -*- coding: utf-8 -*-
 # once upon a rainy monday afternoon.
 #
@@ -536,7 +536,7 @@ def try_parse_tuplet_begin (str, state):
         dig = str[1]
         str = str[2:]
         prev_tuplet_state = state.parsing_tuplet
-         state.parsing_tuplet = string.atoi (dig[0])
+        state.parsing_tuplet = string.atoi (dig[0])
         if prev_tuplet_state:
             voices_append ("}")                
         voices_append ("\\times %s {" % tup_lookup[dig])