From c53174d10ab688114b6a4b6035b5852094730d03 Mon Sep 17 00:00:00 2001 From: jesopo Date: Mon, 22 Jul 2019 12:32:54 +0100 Subject: [PATCH] Remove debug print from perform.py --- modules/perform.py | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/perform.py b/modules/perform.py index 6cdcb252..2c3b39f6 100644 --- a/modules/perform.py +++ b/modules/perform.py @@ -6,7 +6,6 @@ from src import EventManager, ModuleManager, utils class Module(ModuleManager.BaseModule): def _execute(self, server, commands, **kwargs): for command in commands: - print(command) server.send_raw(command.format(**kwargs)) @utils.hook("received.001", priority=EventManager.PRIORITY_URGENT)