mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
More generic error message since the commands continue to execute.
This commit is contained in:
parent
022fd37cae
commit
ba276f0b2a
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
)
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue