diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2020-01-05 09:15:40 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2020-01-05 09:15:40 +0100 |
commit | 4f42f407c198e21184d37936f08b0add985e503d (patch) | |
tree | 6cb796c48b186cf07d4d590487d210cb54d2a330 /doc/en | |
parent | 9ac4639c8c4a0a8e1d5a33c3038c32d0cfc212dd (diff) | |
download | weechat-4f42f407c198e21184d37936f08b0add985e503d.zip |
doc: remove space in example of hsignal irc_redirect_command (plugin API reference)
Diffstat (limited to 'doc/en')
-rw-r--r-- | doc/en/weechat_plugin_api.en.adoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/en/weechat_plugin_api.en.adoc b/doc/en/weechat_plugin_api.en.adoc index ebfa16944..429032e62 100644 --- a/doc/en/weechat_plugin_api.en.adoc +++ b/doc/en/weechat_plugin_api.en.adoc @@ -11170,7 +11170,7 @@ def test_whois_cb(data, signal, hashtable): weechat.prnt("", "output = %s" % hashtable["output"]) return weechat.WEECHAT_RC_OK -weechat.hook_hsignal ("irc_redirection_test_whois", "test_whois_cb", "") +weechat.hook_hsignal("irc_redirection_test_whois", "test_whois_cb", "") weechat.hook_hsignal_send("irc_redirect_command", {"server": "freenode", "pattern": "whois", "signal": "test", "string": "FlashCode"}) |