From 5c1a3634ef5a93571e786118dca67c0cae2e3f26 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Mon, 26 Aug 2024 09:59:46 -0400 Subject: [PATCH] Fix the extended bmc configuration Change-Id: I118520280dd453ee1c8e8cef806f4fab0783746c --- 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 6404112f..70c3012f 100644 --- a/pyghmi/ipmi/command.py +++ b/pyghmi/ipmi/command.py @@ -851,7 +851,7 @@ class Command(object): def get_extended_bmc_configuration(self, hideadvanced=True): self.oem_init() - return self._oem.get_extended_bmc_configuration(hideadvanced=True) + return self._oem.get_extended_bmc_configuration(hideadvanced=hideadvanced) def get_bmc_configuration(self): self.oem_init()