Skip to content

Commit d6c397f

Browse files
committed
fix bug with handling of repeated chords (issue #47)
#47
1 parent 8176fc2 commit d6c397f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ly2video.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,7 @@ def getNoteIndices(leftmostGrobsByMoment,
751751
if len(midiPitches) > 1:
752752
# technically it would be more correct to save the grob
753753
# pitches not MIDI pitches,
754-
lastChord = midiPitches.keys()
754+
lastChord = midiPitches
755755
else:
756756
lastChord = [ ]
757757

0 commit comments

Comments
 (0)