mirror of
https://github.com/sshuttle/sshuttle.git
synced 2024-11-21 23:43:18 +01:00
Remove unused variable 'timeout'
This commit is contained in:
parent
4e8c5411b5
commit
4300a02343
@ -389,7 +389,7 @@ def onaccept_udp(listener, method, mux, handlers):
|
||||
srcip, dstip, data = t
|
||||
debug1('Accept UDP: %r -> %r.\n' % (srcip, dstip,))
|
||||
if srcip in udp_by_src:
|
||||
chan, timeout = udp_by_src[srcip]
|
||||
chan, _ = udp_by_src[srcip]
|
||||
else:
|
||||
chan = mux.next_channel()
|
||||
mux.channels[chan] = lambda cmd, data: udp_done(
|
||||
|
Loading…
Reference in New Issue
Block a user