From ca6eab410f5e2e06b675ab46ddebaaf13a3b886e Mon Sep 17 00:00:00 2001 From: mskgroup <51709279+mskgroup@users.noreply.github.com> Date: Mon, 23 May 2022 12:27:48 +0800 Subject: [PATCH] Update top500_manual.py --- 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 cf8052a..7410042 100644 --- a/factory/top500_manual.py +++ b/factory/top500_manual.py @@ -15,7 +15,7 @@ r = requests.get(url) with open("top500Domains.csv", "wb") as code: code.write(r.content) -with open('top500Domains_new.csv','r') as csvfile: +with open('top500Domains.csv','r') as csvfile: reader = csv.reader(csvfile) with open("resultant/top500_manual.list", "w") as file_domain_in: for domain_i,rows in enumerate(reader):