Smaller bugfixes

This commit is contained in:
2021-03-04 06:42:40 +01:00
parent 8872d1bfe7
commit 2c2c1ede21
6 changed files with 33 additions and 21 deletions

View File

@@ -18,5 +18,4 @@ class CommandHandler(ServiceABC):
def handle(self, cmd: str, args: list[str]):
for command in self._commands:
if cmd == command.name or cmd in command.aliases:
print(command.command)
command.command.run(args)