From c1d947b755adc6ba82360309991725612741e4f8 Mon Sep 17 00:00:00 2001 From: heinu123 Date: Sun, 12 May 2024 14:24:56 +0800 Subject: [PATCH] fix run error --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index aa16390..5eb4029 100755 --- a/main.py +++ b/main.py @@ -18,7 +18,7 @@ if not os.path.exists(OUT_PATH): sys.exit(1) class RuleList: - def __init__(self, domain_file, regex_file, ip_file): + def __init__(self, domain_file, regex_file, ip_file, ip6_file): with open(domain_file, 'r') as file: self.domain_list = file.readlines() with open(regex_file, 'r') as file: