Skip to content

Commit 6c7e6b3

Browse files
committed
fixed incorrect string interpolation operator
1 parent 4c93c54 commit 6c7e6b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

proxies/proxy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ def server_loop(
114114
while True:
115115
client_socket, addr = server.accept()
116116
# print out the local connection information
117-
print("> Received incoming connection from %s:%d" & (addr[0], addr[1]))
117+
print("> Received incoming connection from %s:%d" % (addr[0], addr[1]))
118118

119119
proxy_thread = threading.Thread(
120120
target=proxy_handler,

0 commit comments

Comments
 (0)