We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c93c54 commit 6c7e6b3Copy full SHA for 6c7e6b3
proxies/proxy.py
@@ -114,7 +114,7 @@ def server_loop(
114
while True:
115
client_socket, addr = server.accept()
116
# print out the local connection information
117
- print("> Received incoming connection from %s:%d" & (addr[0], addr[1]))
+ print("> Received incoming connection from %s:%d" % (addr[0], addr[1]))
118
119
proxy_thread = threading.Thread(
120
target=proxy_handler,
0 commit comments