From fbc6e99ba27794313a9fb8c4a0bb09060abffece Mon Sep 17 00:00:00 2001 From: Martin Cech Date: Sun, 4 Feb 2018 21:26:23 -0500 Subject: [PATCH] fix filename --- verify.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/verify.py b/verify.py index 48be00f..7dec171 100644 --- a/verify.py +++ b/verify.py @@ -9,7 +9,7 @@ from publicsuffixlist import PublicSuffixList def main(arguments): psl = PublicSuffixList() - with open("disposable_email_blacklist", "r") as deb: + with open("disposable_email_blacklist.conf", "r") as deb: for line in deb: if psl.publicsuffix(line) != line: print(f'The following line is a public suffix: {line} - please remove it from the blacklist file. See https://publicsuffix.org for details.')