From 5afaac2cda949243a98849f6bf7c217a61fbc8e3 Mon Sep 17 00:00:00 2001 From: Graham Northup Date: Tue, 25 Sep 2018 18:47:35 -0400 Subject: fixed crasher --- broadcast.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'broadcast.py') 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() -- cgit v1.2.3-70-g09d2