This commit is contained in:
deathbybandaid 2022-02-24 14:32:40 -05:00
parent d5eb53e599
commit d18c0b74c6

View File

@ -156,7 +156,9 @@ class Commands():
def is_catchall(self, function, command_type):
"""Determine if function could be called with a rule match"""
command_aliases = self.get_command_aliases
return ('(.*)' in command_aliases)
if '(.*)' in command_aliases:
return True
return False
def get_command_aliases(self, function, command_type):
if command_type == "command":