diff --git a/untls_proxy.py b/untls_proxy.py index 1f8058c..1b865ab 100755 --- a/untls_proxy.py +++ b/untls_proxy.py @@ -431,7 +431,7 @@ def listen(port): while True: for fd, _ in listening.poll(): # TODO: Threads - conn, (host, _) = sock_by_fd[fd].accept() + conn, (host, *_) = sock_by_fd[fd].accept() proxy(conn, host) conn.close()