diff options
author | mathieui <mathieui@mathieui.net> | 2016-12-26 16:00:18 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2016-12-26 16:01:35 +0100 |
commit | fdb61cda2724f5cc79dedec4ecf041a92450216b (patch) | |
tree | f023941c1d8d2f79065bfba7379e3867a5be0586 /plugins | |
parent | 2243687c442443ba56b22dd142a97b2811e796e8 (diff) | |
download | poezio-fdb61cda2724f5cc79dedec4ecf041a92450216b.tar.gz poezio-fdb61cda2724f5cc79dedec4ecf041a92450216b.tar.bz2 poezio-fdb61cda2724f5cc79dedec4ecf041a92450216b.tar.xz poezio-fdb61cda2724f5cc79dedec4ecf041a92450216b.zip |
Add missing message types (fix #3271)
Which were being filtered by the information popup filter
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/exec.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/exec.py b/plugins/exec.py index 9217bc8a..f9894f53 100644 --- a/plugins/exec.py +++ b/plugins/exec.py @@ -65,10 +65,10 @@ class Plugin(BasePlugin): result = process.communicate()[0].decode('utf-8') if arg and arg == '-o': if not self.api.send_message('%s' % (result,)): - self.api.information('Cannot send result (%s), this is not a conversation tab' % result) + self.api.information('Cannot send result (%s), this is not a conversation tab' % result, 'Error') elif arg and arg == '-O': if not self.api.send_message('%s:\n%s' % (command, result)): - self.api.information('Cannot send result (%s), this is not a conversation tab' % result) + self.api.information('Cannot send result (%s), this is not a conversation tab' % result, 'Error') else: self.api.information('%s:\n%s' % (command, result), 'Info') return |