1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Fix misplaced paren.

This commit is contained in:
Matt Clay 2016-03-08 22:15:18 -08:00
parent b01caa371f
commit 33f93f9241

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):