aboutsummaryrefslogtreecommitdiff
path: root/broadcast.py
diff options
context:
space:
mode:
authorGrissess <grissess@nexusg.org>2015-08-20 23:06:11 -0400
committerGrissess <grissess@nexusg.org>2015-08-20 23:06:11 -0400
commit62e18f0871161cc0481e700aacc5fdc7d2e32a0d (patch)
tree2b56ae8f957018c784734dc618c47fa63ddb0163 /broadcast.py
parent1b2294e9318e0ddbaafd9fc7dd5ad55cbedf1cfa (diff)
Partial commit (sorry :( )
Diffstat (limited to 'broadcast.py')
-rw-r--r--broadcast.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/broadcast.py b/broadcast.py
index f0b987b..70e6e98 100644
--- a/broadcast.py
+++ b/broadcast.py
@@ -142,6 +142,8 @@ if options.live or options.list_live:
ev = S.event_input(seq.client)
event = None
if ev:
+ if options.verbose:
+ print 'SEQ:', ev
if ev < 0:
seq._error(ev)
if ev.type == S.SND_SEQ_EVENT_NOTEON:
@@ -159,7 +161,7 @@ if options.live or options.list_live:
continue
if event is not None:
if isinstance(event, midi.NoteOnEvent) and event.velocity == 0:
- ev.__class__ = midi.NoteOffEvent
+ event.__class__ = midi.NoteOffEvent
if options.verbose:
print 'EVENT:', event
if isinstance(event, midi.NoteOnEvent):