Commit ca112f64 by Michael DeHaan

Merge pull request #5594 from willthames/allow_float_type

Allow float as an argument type in AnsibleModule
parents bd426531 31f5ecea
......@@ -706,6 +706,12 @@ class AnsibleModule(object):
self.params[k] = int(value)
else:
is_invalid = True
elif wanted == 'float':
if not isinstance(value, float):
if isinstance(value, basestring):
self.params[k] = float(value)
else:
is_invalid = True
else:
self.fail_json(msg="implementation error: unknown type %s requested for %s" % (wanted, k))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment