mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Merge pull request #10313 from alobbs/devel
Prevents trailing zeros to be truncated from strings in hosts ini inventory variables
This commit is contained in:
commit
161eb6d30d
1 changed files with 5 additions and 1 deletions
|
@ -54,7 +54,11 @@ class InventoryParser(object):
|
||||||
def _parse_value(v):
|
def _parse_value(v):
|
||||||
if "#" not in v:
|
if "#" not in v:
|
||||||
try:
|
try:
|
||||||
return ast.literal_eval(v)
|
ret = ast.literal_eval(v)
|
||||||
|
if type(ret) == float:
|
||||||
|
# Do not trim floats. Eg: "1.20" to 1.2
|
||||||
|
return v
|
||||||
|
return ret
|
||||||
# Using explicit exceptions.
|
# Using explicit exceptions.
|
||||||
# Likely a string that literal_eval does not like. We wil then just set it.
|
# Likely a string that literal_eval does not like. We wil then just set it.
|
||||||
except ValueError:
|
except ValueError:
|
||||||
|
|
Loading…
Reference in a new issue