From ec0da1aa961d2527eeb627e7d3ffca382f9b16f0 Mon Sep 17 00:00:00 2001 From: John Gourlay Date: Wed, 6 Apr 2016 14:46:05 -0400 Subject: [PATCH] Fix a bug that produced incorrect syntax for the staccatissimo articulation. The correct syntax is "-!". It originally produced "-|". --- scripts/musicxml2ly.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/musicxml2ly.py b/scripts/musicxml2ly.py index 7c5297b5ff..307650e2f7 100644 --- a/scripts/musicxml2ly.py +++ b/scripts/musicxml2ly.py @@ -1193,7 +1193,7 @@ articulations_dict = { #"shake": "?", "snap-pizzicato": "snappizzicato", #"spiccato": "?", - "staccatissimo": (musicexp.ShortArticulationEvent, "|"), # or "staccatissimo" + "staccatissimo": (musicexp.ShortArticulationEvent, "!"), # or "staccatissimo" "staccato": (musicexp.ShortArticulationEvent, "."), # or "staccato" "stopped": (musicexp.ShortArticulationEvent, "+"), # or "stopped" #"stress": "?", -- 2.39.2