Fixes Making sure that the key value returns a string to avoid concatenation issues (#37445)
This commit is contained in:
parent
8673e1e661
commit
3f2c90914e
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue