diff options
| author | 2020-02-09 00:54:13 +0000 | |
|---|---|---|
| committer | 2020-02-09 00:54:13 +0000 | |
| commit | 98bfc4db95f9742165a5e530d6b31ce0d10ee482 (patch) | |
| tree | 4934ccb616b303339ea47e2eae707846af7afa93 /src/core_modules/commands | |
| parent | should be checking for "*" in user_access (diff) | |
| signature | ||
transfer stdout/stderr _assured to IRCLine.assured
Diffstat (limited to 'src/core_modules/commands')
| -rw-r--r-- | src/core_modules/commands/__init__.py | 2 |
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") |
