aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar jesopo2019-12-11 11:19:42 +0000
committerGravatar jesopo2019-12-11 11:19:42 +0000
commitff050b3583ac32008d795f48b68bc33710f10165 (patch)
tree5118fa48f85d74e46a68826e10d7a53b91907eae
parentswitch to using the full wolfram alpha API (diff)
signature
send.stdout should default to thinking it is in-channel
-rw-r--r--src/core_modules/commands/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core_modules/commands/__init__.py b/src/core_modules/commands/__init__.py
index ec97c121..a7b55f2b 100644
--- a/src/core_modules/commands/__init__.py
+++ b/src/core_modules/commands/__init__.py
@@ -406,7 +406,7 @@ class Module(ModuleManager.BaseModule):
stdout.prefix = None
target_str = event.get("target_str", target.name)
- self._out(event["server"], target, target_str, False, stdout, type, {})
+ self._out(event["server"], target, target_str, True, stdout, type, {})
@utils.hook("check.command.self")
def check_command_self(self, event):