Fixes Making sure that the key value returns a string to avoid concatenation issues (#37445)

pull/4420/head
John Roach 2018-04-05 11:47:55 -04:00 committed by ansibot
parent 8673e1e661
commit 3f2c90914e
1 changed files with 1 additions and 1 deletions

View File

@ -491,7 +491,7 @@ class VMWareInventory(object):
keylist = map(lambda x: x.strip(), tv['value'].split(','))
for kl in keylist:
try:
newkey = self.config.get('vmware', 'custom_field_group_prefix') + field_name + '_' + kl
newkey = self.config.get('vmware', 'custom_field_group_prefix') + str(field_name) + '_' + kl
newkey = newkey.strip()
except Exception as e:
self.debugl(e)