We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adf05a5 commit 9c995b1Copy full SHA for 9c995b1
1 file changed
master_server/openttd/udp.py
@@ -70,7 +70,7 @@ def _detect_source_ip_port(self, socket_addr, data, is_socks=False):
70
# Example how 'proxy' looks:
71
# PROXY UDP4 127.0.0.1 127.0.0.1 33487 12345
72
73
- (_, _, ip, _, port, _) = proxy.split(" ")
+ _, _, ip, _, port, _ = proxy.split(" ")
74
source = Source(self, socket_addr, ip, int(port))
75
76
return source, data
0 commit comments