Update verification.py
fix missing paren (hopefully this was the intended behavior)
This commit is contained in:
parent
a583240a93
commit
d8ba6b42d6
1 changed files with 1 additions and 1 deletions
|
@ -167,7 +167,7 @@ class Verification(Cog):
|
||||||
)
|
)
|
||||||
|
|
||||||
# Detect if the user uses the wrong hash algorithm
|
# 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 algo in wrong_hash_algos:
|
||||||
for name in itertools.chain(allowed_names, close_names):
|
for name in itertools.chain(allowed_names, close_names):
|
||||||
if hashlib.new(algo, name.encode("utf-8")).hexdigest() in mcl:
|
if hashlib.new(algo, name.encode("utf-8")).hexdigest() in mcl:
|
||||||
|
|
Loading…
Reference in a new issue