aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar jesopo2020-02-09 00:54:13 +0000
committerGravatar jesopo2020-02-09 00:54:13 +0000
commit98bfc4db95f9742165a5e530d6b31ce0d10ee482 (patch)
tree4934ccb616b303339ea47e2eae707846af7afa93
parentshould be checking for "*" in user_access (diff)
signature
transfer stdout/stderr _assured to IRCLine.assured
-rw-r--r--src/core_modules/commands/__init__.py2
1 files changed, 2 insertions, 0 deletions
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")