Skip to content

Commit

Permalink
Use correct output when showing a error message in _run
Browse files Browse the repository at this point in the history
  • Loading branch information
vrutkovs authored and lcarva committed Jun 30, 2017
1 parent bcc15b5 commit d4b7a91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion osbs-box.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def _run(cmd, ignore_exitcode=False, show_print=True):
if ignore_exitcode:
return
else:
print(e.stdout.decode('utf-8'))
print(e.output.decode('utf-8'))
raise


Expand Down

0 comments on commit d4b7a91

Please sign in to comment.