Merge pull request #15891 from privateip/fixes-ansible-modules-core-3502

bugfix for issue with trying to eval contains with non-string
pull/4420/head
Peter Sprygada 2016-05-17 06:43:42 -04:00
commit 7cb7132b24
1 changed files with 1 additions and 1 deletions

View File

@ -382,7 +382,7 @@ class Conditional(object):
return self.number(value) <= self.value
def contains(self, value):
return self.value in value
return str(self.value) in value