Status: New
Owner: ----
Labels: Type-Defect Priority-Medium
New issue 122 by
OrtalisM...@gmail.com: change_note_duration(): NameError:
global name 'valid_beat_duration' is not defined
http://code.google.com/p/mingus/issues/detail?id=122
What steps will reproduce the problem?
1. calling change_note_duration()
...
cur_beat = track.bars[-1].current_beat
track.bars[-1].place_notes(note, value_left)
track.bars[-1].change_note_duration(cur_beat, unit.get_value())
...
2. run script
3. track.bars[-1].change_note_duration(cur_beat, unit.get_value())
File "/Library/Python/2.7/site-packages/mingus/containers/Bar.py", line
135, in change_note_duration
if valid_beat_duration(to):
NameError: global name 'valid_beat_duration' is not defined
Please provide any additional information below.
line 135 of Bar.y is:
if valid_beat_duration(to):
it chould be:
if _meter.valid_beat_duration(to):
--
You received this message because this project is configured to send all
issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings