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

bugfix for issue with trying to eval contains with non-string

fixes ansible/ansible-modules-core#3502
This commit is contained in:
Peter Sprygada 2016-05-16 14:54:26 -04:00
parent 8f7c879574
commit 83d0a15588

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