Also catch NameErrors which would indicate missing quotes

This commit is contained in:
Daniel Hokka Zakrisson 2013-02-07 11:56:29 +01:00
parent bc709e7b67
commit 70d5dad726

View file

@ -156,7 +156,7 @@ def check_conditional(conditional):
try:
return eval(conditional.replace("\n", "\\n"))
except SyntaxError as e:
except (NameError, SyntaxError):
raise errors.AnsibleError("Could not evaluate the expression: " + conditional)
def is_executable(path):