Skip to content

Commit 00d212e

Browse files
committedDec 9, 2014
Update udp_proxy.py
remove unused variables
1 parent 348b3bd commit 00d212e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎udp_proxy.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def recv():
4747
break
4848
logger.debug('received: {0!r} from {1}'.format(data, addr))
4949
sock_dst.sendto(data, dst_addr)
50-
data, paddr = sock_dst.recvfrom(65565)
50+
data, _ = sock_dst.recvfrom(65565)
5151
sock_src.sendto(data, addr)
5252

5353
sock_src.close()

0 commit comments

Comments
 (0)