Fix misplaced paren.

pull/4420/head
Matt Clay 2016-03-08 22:15:18 -08:00
parent b01caa371f
commit 33f93f9241
1 changed files with 1 additions and 1 deletions

View File

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