Remove debug print from perform.py

This commit is contained in:
jesopo 2019-07-22 12:32:54 +01:00
parent c214d84643
commit c53174d10a

View file

@ -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)