From 80cd0bad8ecb63f559c20ca8feed69aa720b0d1e Mon Sep 17 00:00:00 2001 From: Johnshall Date: Mon, 7 Feb 2022 00:58:05 +0800 Subject: [PATCH] Fix the format of domains --- factory/top500_manual.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/factory/top500_manual.py b/factory/top500_manual.py index 563959e..ae4b312 100644 --- a/factory/top500_manual.py +++ b/factory/top500_manual.py @@ -15,7 +15,7 @@ with open("resultant/top500_manual.list", "r", encoding='utf-8') as f: for domain in f.readlines(): if domain[0] == "#": continue - domains.append(domain) + domains.append(domain[:-1]) # 判断直连或代理 domains_proxy = []