Commit f6937592 by Michael DeHaan

Style fixes from pep8 makefile target

parent f074f1c4
...@@ -493,9 +493,9 @@ class Runner(object): ...@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment