From ff050b3583ac32008d795f48b68bc33710f10165 Mon Sep 17 00:00:00 2001 From: jesopo Date: Wed, 11 Dec 2019 11:19:42 +0000 Subject: [PATCH] send.stdout should default to thinking it is in-channel --- src/core_modules/commands/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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):