win_reboot: backport warning message arguments (#37971)

* win_reboot: fixed up warning message for dep args (#37898)

(cherry picked from commit c4e7b54630)

* Added changelog fragment
pull/38238/head
Jordan Borean 8 years ago committed by GitHub
parent d0f1a23c45
commit c056b8a35c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,3 @@
bugfixes:
- win_reboot - fix deprecated warning message to show version in correct spot
https://github.com/ansible/ansible/pull/37898

@ -85,7 +85,7 @@ class ActionModule(ActionBase):
}
for arg, version in deprecated_args.items():
if self._task.args.get(arg) is not None:
display.warning("Since Ansible %s, %s is no longer used with win_reboot" % (arg, version))
display.warning("Since Ansible %s, %s is no longer used with win_reboot" % (version, arg))
if self._task.args.get('connect_timeout') is not None:
connect_timeout = int(self._task.args.get('connect_timeout', self.DEFAULT_CONNECT_TIMEOUT))

Loading…
Cancel
Save