Skip to content

Commit

Permalink
fix bug with handling of repeated chords (issue #47)
Browse files Browse the repository at this point in the history
  • Loading branch information
aspiers committed Feb 24, 2013
1 parent 8176fc2 commit d6c397f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ly2video.py
Original file line number Diff line number Diff line change
Expand Up @@ -751,7 +751,7 @@ def getNoteIndices(leftmostGrobsByMoment,
if len(midiPitches) > 1:
# technically it would be more correct to save the grob
# pitches not MIDI pitches,
lastChord = midiPitches.keys()
lastChord = midiPitches
else:
lastChord = [ ]

Expand Down

0 comments on commit d6c397f

Please sign in to comment.