aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/commands.py3
1 files changed, 2 insertions, 1 deletions
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):