Skip to content

Commit

Permalink
Fix bug
Browse files Browse the repository at this point in the history
Signed-off-by: maipbui <maibui@microsoft.com>
  • Loading branch information
maipbui committed Sep 13, 2022
1 parent 8593247 commit 7f54f67
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def get_fru_info(self,fru_id,reg_name):
output = None
Found = False
try:
self.IPMI_FRU_DATA[3] += str(fru_id)
self.IPMI_FRU_DATA[3] = str(fru_id)
status, ipmi_fru_list = getstatusoutput_noshell(self.IPMI_FRU_DATA)
if status == 0:
for item in ipmi_fru_list.split("\n"):
Expand Down

0 comments on commit 7f54f67

Please sign in to comment.