aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2019-07-22 12:32:54 +0100
committerGravatar jesopo2019-07-22 12:32:54 +0100
commitc53174d10ab688114b6a4b6035b5852094730d03 (patch)
tree44d5c85a10598595a1bca0e6881b78c61e704d6e /modules
parent'event' doesn't exist in _ban (diff)
signature
Remove debug print from perform.py
Diffstat (limited to 'modules')
-rw-r--r--modules/perform.py1
1 files changed, 0 insertions, 1 deletions
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)