Fix plugins stderr output

This commit is contained in:
Alexei Sorokin 2016-08-20 21:56:39 +03:00
parent 1cc9b97c39
commit 2d96423021
1 changed files with 1 additions and 1 deletions

View File

@ -122,8 +122,8 @@ class Zhobe:
try:
proc = subprocess.Popen(cmd,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE,
universal_newlines=True)
cmd_out, cmd_outerr = proc.communicate()
except subprocess.CalledProcessError as err: