More generic error message since the commands continue to execute.

This commit is contained in:
Pedro Algarvio 2013-09-09 11:48:59 +01:00
parent 022fd37cae
commit ba276f0b2a

View file

@ -116,7 +116,7 @@ def download_unittest_reports(vm_name):
proc.communicate()
if proc.returncode != 0:
print(
'Failed to download unittest data: Exit code: {0}'.format(
'\nFailed to execute command. Exit code: {0}'.format(
proc.returncode
)
)
@ -152,7 +152,7 @@ def download_coverage_report(vm_name):
proc.communicate()
if proc.returncode != 0:
print(
'Failed to download coverage report: Exit code: {0}'.format(
'\nFailed to execute command. Exit code: {0}'.format(
proc.returncode
)
)