2
0
mirror of https://opendev.org/x/pyghmi synced 2025-01-27 19:37:44 +00:00

Fix format of UEFI info from a TSMA device

Errant comma was causing the data to be the incorrect type.

Change-Id: Ic7b6dc8158d259ca04914bd4668151c99569a68e
This commit is contained in:
Jarrod Johnson 2019-11-06 17:04:14 -05:00
parent 0ba4437422
commit e661610bb5

View File

@ -108,7 +108,7 @@ class TsmHandler(generic.OEMHandler):
}
if biosinf.get('main', False):
biosres['version'] = '{0}.{1}'.format(
biosinf['main'][0], biosinf['main'][1:]),
biosinf['main'][0], biosinf['main'][1:])
yield ('UEFI', biosres)
gotinfo = True
break