aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar jesopo2020-01-11 19:10:05 +0000
committerGravatar jesopo2020-01-11 19:10:19 +0000
commitd06d74efb9f844646ae25402c5c60aa4774c8269 (patch)
treede12a9853ae371a79900e26dd41d59d00c1aabe5 /src
parentalso Accept-Language "en" in HTTP requests (0.5 weight) (diff)
signature
default pattern-based commands to expect_output=False
Diffstat (limited to 'src')
-rw-r--r--src/core_modules/commands/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core_modules/commands/__init__.py b/src/core_modules/commands/__init__.py
index 9822903f..6590a350 100644
--- a/src/core_modules/commands/__init__.py
+++ b/src/core_modules/commands/__init__.py
@@ -320,7 +320,7 @@ class Module(ModuleManager.BaseModule):
self.command(event["server"], event["channel"],
event["target_str"], True, event["user"], command,
args_split, event["line"], hook,
- command_prefix=command_prefix,
+ command_prefix=command_prefix, expect_output=True,
buffer_line=event["buffer_line"])
else:
self.events.on("unknown.command").call(server=event["server"],
@@ -345,7 +345,7 @@ class Module(ModuleManager.BaseModule):
event["target_str"], True, event["user"], command,
"", event["line"], hook, match=match,
message=event["message"], command_prefix="",
- action=event["action"],
+ action=event["action"], expect_output=False,
buffer_line=event["buffer_line"])
if res: