mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Fix improper exception raise
NOTE: this particular line seems to have been removed in develop, so it'll need to also be removed when merged forward if there is a conflict.
This commit is contained in:
parent
8827193bcc
commit
2a25530cc4
1 changed files with 1 additions and 1 deletions
|
@ -1313,7 +1313,7 @@ def deploy_windows(host,
|
|||
)
|
||||
|
||||
if ret_code != 0:
|
||||
raise Exception("Fail installer %d", ret_code)
|
||||
raise Exception('Fail installer {0}'.format(ret_code))
|
||||
|
||||
# Copy over minion_conf
|
||||
if minion_conf:
|
||||
|
|
Loading…
Add table
Reference in a new issue