From 030c77f637ddecf2d6081a683925815d91f6c643 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Sun, 27 Apr 2014 14:22:16 +0300 Subject: [PATCH] Unix: allow wtf to tell that it doesn't know something. Fixes ProgVal/Limnoria#256 . --- plugins/Unix/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Unix/plugin.py b/plugins/Unix/plugin.py index 7a9f29bee..5a963980a 100644 --- a/plugins/Unix/plugin.py +++ b/plugins/Unix/plugin.py @@ -245,7 +245,7 @@ class Unix(callbacks.Plugin): with open(os.devnull, 'r+') as null: inst = subprocess.Popen([wtfCmd, something], stdout=subprocess.PIPE, - stderr=null, + stderr=STDOUT, stdin=null) except OSError: irc.error(_('It seems the configured wtf command was not '