diff options
| author | 2019-06-07 16:21:11 +0100 | |
|---|---|---|
| committer | 2019-06-07 16:21:11 +0100 | |
| commit | b1d07859c336ced6938ae7c3a3171ff38333fd80 (patch) | |
| tree | 09081b02fadcb93a77fc9230a4f53a4caa45ac4f /modules | |
| parent | Only show typing indicators for commands that expect output (diff) | |
| signature | ||
actually return `ret`
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/commands/__init__.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/modules/commands/__init__.py b/modules/commands/__init__.py index 00cf5e62..598da563 100644 --- a/modules/commands/__init__.py +++ b/modules/commands/__init__.py @@ -223,6 +223,8 @@ class Module(ModuleManager.BaseModule): server.send(utils.irc.protocol.tagmsg(target_str, {"+draft/typing": "done"}), immediate=True) + return ret + def _command_prefix(self, server, channel): return channel.get_setting("command-prefix", server.get_setting("command-prefix", "!")) |
