From d8ba6b42d63f0f1684dd1aff92e46c1473a05353 Mon Sep 17 00:00:00 2001 From: pixel-stuck Date: Sat, 13 Jun 2020 01:57:11 -0400 Subject: [PATCH] Update verification.py fix missing paren (hopefully this was the intended behavior) --- cogs/verification.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/verification.py b/cogs/verification.py index 2f62588..d30e737 100644 --- a/cogs/verification.py +++ b/cogs/verification.py @@ -167,7 +167,7 @@ class Verification(Cog): ) # Detect if the user uses the wrong hash algorithm - wrong_hash_algos = list(set(config.welcome_hashes) - {self.hash_choice} + wrong_hash_algos = list(set(config.welcome_hashes) - {self.hash_choice}) for algo in wrong_hash_algos: for name in itertools.chain(allowed_names, close_names): if hashlib.new(algo, name.encode("utf-8")).hexdigest() in mcl: