mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Style fixes from pep8 makefile target
This commit is contained in:
parent
f074f1c4c4
commit
f693759252
1 changed files with 2 additions and 2 deletions
|
@ -493,9 +493,9 @@ class Runner(object):
|
||||||
|
|
||||||
def _executor(self, host):
|
def _executor(self, host):
|
||||||
try:
|
try:
|
||||||
(host, ok, data) = self._executor_internal(host)
|
(host, ok, data) = self._executor_internal(host)
|
||||||
if not ok:
|
if not ok:
|
||||||
self.callbacks.on_unreachable(host, data)
|
self.callbacks.on_unreachable(host, data)
|
||||||
return (host, ok, data)
|
return (host, ok, data)
|
||||||
except errors.AnsibleError, ae:
|
except errors.AnsibleError, ae:
|
||||||
msg = str(ae)
|
msg = str(ae)
|
||||||
|
|
Loading…
Reference in a new issue