diff options
author | John Gourlay <john@weathervanefarm.net> | 2016-04-06 14:46:05 -0400 |
---|---|---|
committer | John Gourlay <john@weathervanefarm.net> | 2016-04-06 14:46:05 -0400 |
commit | ec0da1aa961d2527eeb627e7d3ffca382f9b16f0 (patch) | |
tree | cfac1f160e337a12d976b3e6c749146b95a10b4d /scripts | |
parent | 9b2a61fc68fbe88f71000d7cd7f2f474c047db30 (diff) |
Fix a bug that produced incorrect syntax for the staccatissimo articulation.
The correct syntax is "-!". It originally produced "-|".
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/musicxml2ly.py | 2 |
1 files changed, 1 insertions, 1 deletions
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": "?", |