diff options
Diffstat (limited to 'test/test_proxy.py')
-rw-r--r-- | test/test_proxy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_proxy.py b/test/test_proxy.py index 74e48ca1..2f1775cb 100644 --- a/test/test_proxy.py +++ b/test/test_proxy.py @@ -39,7 +39,7 @@ Content-Length: 10 """ while True: - connection, client_address = sock.accept() + connection, _ = sock.accept() data = recvall(connection).decode() |