Style fixes from pep8 makefile target

This commit is contained in:
Michael DeHaan 2012-03-26 21:25:43 -04:00
parent f074f1c4c4
commit f693759252

View file

@ -493,9 +493,9 @@ class Runner(object):
def _executor(self, host):
try:
(host, ok, data) = self._executor_internal(host)
(host, ok, data) = self._executor_internal(host)
if not ok:
self.callbacks.on_unreachable(host, data)
self.callbacks.on_unreachable(host, data)
return (host, ok, data)
except errors.AnsibleError, ae:
msg = str(ae)