From 335f1545a87ec59b85c8188b70950a1b303d6fc7 Mon Sep 17 00:00:00 2001 From: jesopo Date: Fri, 25 Jan 2019 07:11:45 +0000 Subject: [PATCH] Give `StdOut.send` the new `method` param (commands.py) --- modules/commands.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/commands.py b/modules/commands.py index ce835ff0..dcd5abcc 100644 --- a/modules/commands.py +++ b/modules/commands.py @@ -325,7 +325,8 @@ class Module(ModuleManager.BaseModule): :help: Show more output from the last command """ if event["target"].last_stdout and event["target"].last_stdout.has_text(): - event["target"].last_stdout.send() + event["target"].last_stdout.send( + self._command_method(event["target"], event["server"])) @utils.hook("received.command.ignore", min_args=1) def ignore(self, event):