From f1ff0a02421b01714bf759036e2835656a03810e Mon Sep 17 00:00:00 2001 From: luyf5 Date: Wed, 1 Dec 2021 11:11:24 +0800 Subject: [PATCH] remove wrong used ipmicmd in command.py Change-Id: Id535d338569caade6c2a32214f64469b33209b53 --- pyghmi/ipmi/command.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyghmi/ipmi/command.py b/pyghmi/ipmi/command.py index a4e55d09..3b54ae76 100644 --- a/pyghmi/ipmi/command.py +++ b/pyghmi/ipmi/command.py @@ -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'])