Print errors to stderr

This means that continuserv will actually display them
pull/977/head
Daniel Wagner-Hall 9 years ago
parent 0b183f06f8
commit 08defafd98

@ -49,7 +49,7 @@ def run_through_template(input):
)
except subprocess.CalledProcessError as e:
with open(tmpfile, 'r') as f:
print f.read()
sys.stderr.write(f.read() + "\n")
raise
def prepare_env():

Loading…
Cancel
Save