Fix typo that broke everything

This commit is contained in:
nyuszika7h 2015-07-20 15:58:34 +02:00
parent 93345c990d
commit 66fe0ec167

View File

@ -299,7 +299,7 @@ def check_priv(priv):
if not acc:
acc = USERS[nick]["account"]
if not var.DISABLE_ACCOUNTS and acc and acc != "*":
if not DISABLE_ACCOUNTS and acc and acc != "*":
for pattern in accounts:
if fnmatch.fnmatch(acc.lower(), pattern.lower()):
return True