From fad0f77d1a6b7302e660938d8536c6995e8bef91 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 --- scripts/musicxml2ly.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/musicxml2ly.py b/scripts/musicxml2ly.py index 52e6971487..38bfb1949e 100644 --- a/scripts/musicxml2ly.py +++ b/scripts/musicxml2ly.py @@ -1619,6 +1619,7 @@ chordkind_dict = { 'diminished': 'dim5', # Sevenths: 'dominant': '7', + 'dominant-seventh': '7', 'major-seventh': 'maj7', 'minor-seventh': 'm7', 'diminished-seventh': 'dim7', -- 2.39.5