diff --git a/hyde/plugin.py b/hyde/plugin.py index c11e18f..a8e0fc9 100644 --- a/hyde/plugin.py +++ b/hyde/plugin.py @@ -389,7 +389,7 @@ class CLTransformer(Plugin): self.logger.debug( "Calling executable [%s] with arguments %s" % (args[0], unicode(args[1:]))) - subprocess.check_call(args) + subprocess.check_output(args) except subprocess.CalledProcessError, error: self.logger.error(traceback.format_exc()) self.logger.error(error.output)