2
0
mirror of https://opendev.org/x/pyghmi synced 2026-03-31 15:23:31 +00:00

Merge "remove wrong used ipmicmd in command.py"

This commit is contained in:
Zuul
2021-12-14 17:40:51 +00:00
committed by Gerrit Code Review

View File

@@ -702,7 +702,7 @@ class Command(object):
# then it is expected that a manufacturer matches SMBIOS to IPMI
# get system uuid return data.
if 'UUID' not in zerofru:
guiddata = self.ipmicmd.raw_command(netfn=6, command=0x37)
guiddata = self.raw_command(netfn=6, command=0x37)
if 'error' not in guiddata:
zerofru['UUID'] = util.\
decode_wireformat_uuid(guiddata['data'])