For module parameter checking, allow conversion of int to float (#17325)

Fixes https://github.com/ansible/ansible-modules-core/issues/4084
This commit is contained in:
Toshio Kuratomi 2016-08-31 08:57:47 -07:00 committed by GitHub
parent 811fc385ee
commit 71ef25d5e8

View file

@ -1505,7 +1505,7 @@ class AnsibleModule(object):
if isinstance(value, float):
return value
if isinstance(value, string_types):
if isinstance(value, (binary_type, text_type, int)):
return float(value)
raise TypeError('%s cannot be converted to a float' % type(value))