From d2119d43f8c085ab1068434b5a4021e57c10afa1 Mon Sep 17 00:00:00 2001 From: Erlend Aasland Date: Thu, 31 Jan 2008 23:35:19 +0100 Subject: [PATCH] MusicXML: fix acciaccatura (I broke it in commit 859ff8b297c16c29106f3b62cb21b0b94b4b4914) --- scripts/musicxml2ly.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/musicxml2ly.py b/scripts/musicxml2ly.py index b55fed64a5..bf41a46779 100644 --- a/scripts/musicxml2ly.py +++ b/scripts/musicxml2ly.py @@ -1392,7 +1392,7 @@ def musicxml_voice_to_lily_voice (voice): if hasattr (grace, 'slash'): # TODO: use grace_type = "appoggiatura" for slurred grace notes if grace.slash == "yes": - grace_chord.grace_type = "acciaccatura" + ev_chord.grace_type = "acciaccatura" # now that we have inserted the chord into the grace music, insert # everything into that chord instead of the ev_chord ev_chord = grace_chord -- 2.39.2