From eacc30979c50fa1473fc75c83dcacbe22a97340f Mon Sep 17 00:00:00 2001 From: Franklin-F Date: Sat, 17 May 2025 14:39:56 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E4=BB=A3=E7=90=86?= =?UTF-8?q?=E8=8E=B7=E5=8F=96=E9=80=BB=E8=BE=91=E4=BB=A5=E4=BD=BF=E7=94=A8?= =?UTF-8?q?=E6=96=B0=E7=9A=84=20fetch=5Fproxies2=20=E5=87=BD=E6=95=B0?= =?UTF-8?q?=E5=B9=B6=E4=BC=98=E5=8C=96=E6=89=93=E5=8D=B0=E4=BF=A1=E6=81=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- multi_proxy_refill.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/multi_proxy_refill.py b/multi_proxy_refill.py index 306a8bb..4038331 100644 --- a/multi_proxy_refill.py +++ b/multi_proxy_refill.py @@ -33,7 +33,8 @@ db = DB.DBVidcon() def fetch_proxies2(region_code, n): - return [("http://" + region_code.lower() + "-pr.thordata.net:25000") * n] + url = "http://" + region_code.lower() + "-pr.thordata.net:25000" + return [url for _ in range(n)] def fetch_proxies(region_code, n):