debug print

This commit is contained in:
Tomas Groth 2019-02-15 22:41:41 +01:00
parent 75abfc27d9
commit fb4a66d47b
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ class Builder(object):
Return text from stdout.
"""
_print(cmd)
print(cmd)
proc = Popen(cmd, stdout=PIPE, stderr=PIPE, universal_newlines=True)
output, error = proc.communicate()
code = proc.wait()