From: Reinhold Kainhofer <reinhold@kainhofer.com>
Date: Fri, 3 Apr 2009 15:58:04 +0000 (+0200)
Subject: MusicXML: Allow dominant-seventh chord, even though MusicXML doesn't specify it
X-Git-Tag: release/2.13.1-1~56^2~22
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=fad0f77d1a6b7302e660938d8536c6995e8bef91;p=lilypond.git

MusicXML: Allow dominant-seventh chord, even though MusicXML doesn't specify it
---

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',