mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #14874 from mattclay/misplaced-paren
Fix misplaced paren.
This commit is contained in:
commit
a52a561217
1 changed files with 1 additions and 1 deletions
|
@ -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):
|
||||||
|
|
Loading…
Reference in a new issue