diff options
author | Graham Northup <grissess@nexusg.org> | 2018-09-25 18:47:35 -0400 |
---|---|---|
committer | Graham Northup <grissess@nexusg.org> | 2018-09-25 18:47:35 -0400 |
commit | 5afaac2cda949243a98849f6bf7c217a61fbc8e3 (patch) | |
tree | 8da97e49f9b3f6286f8966ec9c9d77d8fae9a1d9 /broadcast.py | |
parent | ec177bb81a2a6ab54e05118066364281ebccc318 (diff) |
fixed crasher
Diffstat (limited to 'broadcast.py')
-rw-r--r-- | broadcast.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/broadcast.py b/broadcast.py index 80e4c59..bd607ca 100644 --- a/broadcast.py +++ b/broadcast.py @@ -261,7 +261,7 @@ for num in xrange(options.tries): s.sendto(str(Packet(CMD.QUIT)), cl) if options.silence: for i in xrange(pkt.data[0]): - s.sendto(str(Packet(CMD.PLAY, 0, 1, 1, 0.0, i)), cl) + s.sendto(str(Packet(CMD.PLAY, 0, 0, 0, 0.0, i)), cl) if pkt.data[0] == OBLIGATE_POLYPHONE: pkt.data[0] = 1 for i in xrange(pkt.data[0]): @@ -729,7 +729,11 @@ for fname in args: spin_phase = 0 if delta >= 0 and not options.spin: if tap_func is not None: - if delta >= options.tapper: + try: + delta_on = factor * min(thr.next_t for thr in threads.values() if thr.next_t is not None and thr.next_t != thr.cur_offt) + except ValueError: + delta_on = float('inf') + if delta_on >= options.tapper: if options.verbose: print 'TAP' tap_func() |