From: John Gourlay Date: Wed, 6 Apr 2016 18:46:05 +0000 (-0400) Subject: Fix a bug that produced incorrect syntax for the staccatissimo articulation. X-Git-Tag: release/2.19.44-1~24^2~10 X-Git-Url: https://git.donarmstrong.com/?p=lilypond.git;a=commitdiff_plain;h=ec0da1aa961d2527eeb627e7d3ffca382f9b16f0 Fix a bug that produced incorrect syntax for the staccatissimo articulation. The correct syntax is "-!". It originally produced "-|". --- 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": "?",