diff --git a/src/fenrir/commands/commands/subprocess.py b/src/fenrir/commands/commands/subprocess.py index be4b8574..ac53e8d8 100644 --- a/src/fenrir/commands/commands/subprocess.py +++ b/src/fenrir/commands/commands/subprocess.py @@ -36,9 +36,11 @@ class command(): callstring = self.scriptPath + ' ' + self.env['general']['currUser'] p = Popen(callstring , stdout=PIPE, stderr=PIPE, shell=True) stdout, stderr = p.communicate() + stdout = stdout.decode('utf-8') + stderr = stderr.decode('utf-8') self.env['runtime']['outputManager'].interruptOutput() if stderr != '': - self.env['runtime']['outputManager'].presentText(str(stdout) , soundIcon='', interrupt=False) + self.env['runtime']['outputManager'].presentText(str(stderr) , soundIcon='', interrupt=False) if stdout != '': self.env['runtime']['outputManager'].presentText(str(stdout) , soundIcon='', interrupt=False) except Exception as e: