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

remove wrong used ipmicmd in command.py

Change-Id: Id535d338569caade6c2a32214f64469b33209b53
This commit is contained in:
luyf5
2021-12-01 11:11:24 +08:00
parent d86b49c104
commit f1ff0a0242

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'])