From c714a279b64295120cbe1127557df6a8fedd5f0d Mon Sep 17 00:00:00 2001 From: Reinhold Kainhofer Date: Fri, 3 Apr 2009 17:58:04 +0200 Subject: [PATCH] MusicXML: Allow dominant-seventh chord, even though MusicXML doesn't specify it (cherry picked from commit 6739bb60eee5b748396ee1f0a78053a0b23ea5d8) --- scripts/musicxml2ly.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/musicxml2ly.py b/scripts/musicxml2ly.py index f6fcaa5cc1..19899b185c 100644 --- a/scripts/musicxml2ly.py +++ b/scripts/musicxml2ly.py @@ -1662,6 +1662,7 @@ chordkind_dict = { 'diminished': 'dim5', # Sevenths: 'dominant': '7', + 'dominant-seventh': '7', 'major-seventh': 'maj7', 'minor-seventh': 'm7', 'diminished-seventh': 'dim7', -- 2.39.5