]> git.donarmstrong.com Git - lilypond.git/commitdiff
MusicXML: correctly convert bass in chord names
authorReinhold Kainhofer <reinhold@kainhofer.com>
Sat, 12 Apr 2008 16:47:06 +0000 (18:47 +0200)
committerReinhold Kainhofer <reinhold@kainhofer.com>
Sat, 12 Apr 2008 20:16:22 +0000 (22:16 +0200)
Signed-off-by: Reinhold Kainhofer <reinhold@kainhofer.com>
python/musicexp.py

index 8cedf06decc53021dc3f499505e833b241af065f..c653c5cb7944e664c9130caebc66a5e280f199a0 100644 (file)
@@ -1149,7 +1149,7 @@ class ChordNameEvent (Event):
             if m.type == -1:
               value += m.ly_expression ()
         if self.bass:
-            value += "/%s" % self.bass.ly_expression ()
+            value += "/+%s" % self.bass.ly_expression ()
         return value