From 98bfc4db95f9742165a5e530d6b31ce0d10ee482 Mon Sep 17 00:00:00 2001 From: jesopo Date: Sun, 9 Feb 2020 00:54:13 +0000 Subject: [PATCH] transfer stdout/stderr _assured to IRCLine.assured --- src/core_modules/commands/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core_modules/commands/__init__.py b/src/core_modules/commands/__init__.py index 47488f24..0e3955d0 100644 --- a/src/core_modules/commands/__init__.py +++ b/src/core_modules/commands/__init__.py @@ -261,6 +261,8 @@ class Module(ModuleManager.BaseModule): obj.insert("%s %s" % (STR_CONTINUED, trunc)) valid = valid+STR_MORE line = IRCLine.parse_line(valid) + if obj._assured: + line.assure() server.send(line) @utils.hook("preprocess.command")