1
0
Fork 0
mirror of synced 2024-09-29 08:51:53 +13:00

Another find+replace error fixed

This commit is contained in:
Phxntxm 2017-02-19 15:12:13 -06:00
parent d9976dfd87
commit 3a453e592b

View file

@ -233,7 +233,7 @@ class Mod:
# If we don't find custom permissions, get the required permission for a command # If we don't find custom permissions, get the required permission for a command
# based on what we set in utils.custom_perms, if custom_perms isn't found, we'll get an IndexError # based on what we set in utils.custom_perms, if custom_perms isn't found, we'll get an IndexError
try: try:
custom_perms = [func for func in cmd.utils if "custom_perms" in func.__qualname__][0] custom_perms = [func for func in cmd.checks if "custom_perms" in func.__qualname__][0]
except IndexError: except IndexError:
# Loop through and check if there is a check called is_owner # Loop through and check if there is a check called is_owner
# If we loop through and don't find one, this means that the only other choice is to be # If we loop through and don't find one, this means that the only other choice is to be