From 531928bf0b8fd1602205af6d4c01ce0d9af1e7f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Asiel=20D=C3=ADaz=20Ben=C3=ADtez?= Date: Tue, 14 Jan 2020 14:27:22 -0500 Subject: [PATCH] Update proxy.py --- scripts/proxy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/proxy.py b/scripts/proxy.py index 80c8ef2b2..13e1b6978 100644 --- a/scripts/proxy.py +++ b/scripts/proxy.py @@ -17,7 +17,7 @@ import socket import socketserver -class Proxy(socketserver.TCPServer): +class Proxy(socketserver.ThreadingTCPServer): allow_reuse_address = True def __init__(self, proxy_host, proxy_port, real_host, real_port, use_ssl):