From 591e45611cc88fd5948d2c73a87db6800154ea1a Mon Sep 17 00:00:00 2001 From: Reinhold Kainhofer Date: Sat, 12 Apr 2008 18:47:06 +0200 Subject: [PATCH] MusicXML: correctly convert bass in chord names Signed-off-by: Reinhold Kainhofer --- python/musicexp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/musicexp.py b/python/musicexp.py index 8cedf06dec..c653c5cb79 100644 --- a/python/musicexp.py +++ b/python/musicexp.py @@ -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 -- 2.39.5