Merge pull request #14874 from mattclay/misplaced-paren

Fix misplaced paren.
This commit is contained in:
Brian Coca 2016-03-09 09:14:16 -05:00
commit a52a561217

View file

@ -71,7 +71,7 @@ class Connection(ConnectionBase):
def _search_executable(executable): def _search_executable(executable):
cmd = distutils.spawn.find_executable(executable) cmd = distutils.spawn.find_executable(executable)
if not cmd: if not cmd:
raise AnsibleError("%s command not found in PATH") % executable raise AnsibleError("%s command not found in PATH" % executable)
return cmd return cmd
def list_jails(self): def list_jails(self):