[FIX] tools: return data from exec_command_pipe call

Rendering of workflow uses it, returns the pdf data
This commit is contained in:
Martin Trigaux 2015-01-21 16:50:00 +01:00
parent 34de1c0f78
commit cbd9b46129
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ def exec_command_pipe(name, *args):
prog = find_in_path(name)
if not prog:
raise Exception('Command `%s` not found.' % name)
_exec_pipe(prog, *args)
return _exec_pipe(prog, *args)
#----------------------------------------------------------
# Postgres subprocesses