Merge "Convert all values into str type" into stable/mitaka

This commit is contained in:
Jenkins 2016-05-27 08:31:07 +00:00 committed by Gerrit Code Review
commit 3ee66417fa

View File

@ -47,7 +47,7 @@ def get_structured_config_dict(config):
if k == 'ensure' and v == 'absent':
d['value'] = None
if k == 'value':
d['value'] = v
d['value'] = str(v)
structured_conf[key2].append(d)
for key in config.keys():