bgr / mingus

Automatically exported from code.google.com/p/mingus
GNU General Public License v3.0
1 stars 1 forks source link

"M7+5" : " augmented minor seventh", in chords.py correct? #118

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago

In the list
# Augmented chords
        "aug" : " augmented triad",
        "+" : " augmented triad",
        "7#5" : " augmented minor seventh",
        "M7+5" : " augmented minor seventh",
        "M7+" : " augmented major seventh",
        "m7+" : " augmented minor seventh",
        "7+" : " augmented major seventh",

and

# Augmented chords
        "aug" : augmented_triad,
        "+" : augmented_triad,
        "7#5" : augmented_minor_seventh,
        "M7+5" : augmented_minor_seventh,
        "M7+" : augmented_major_seventh,
        "m7+" : augmented_minor_seventh,
        "7+" : augmented_major_seventh,

M7+5 is repeatedly assigned minor value. Is this correct?

Original issue reported on code.google.com by andreas....@gmail.com on 4 Feb 2013 at 9:34