summaryrefslogtreecommitdiff
path: root/cxmanage_api/node.py
diff options
context:
space:
mode:
Diffstat (limited to 'cxmanage_api/node.py')
-rw-r--r--cxmanage_api/node.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/cxmanage_api/node.py b/cxmanage_api/node.py
index c92bdc5..66f0d67 100644
--- a/cxmanage_api/node.py
+++ b/cxmanage_api/node.py
@@ -1072,6 +1072,11 @@ communication.
# to continue gracefully if the ECME is out of date.
result.hardware_version = "Unknown"
+ try:
+ result.pmic_version = self.bmc.pmic_get_version()
+ except IpmiError:
+ pass
+
return result
def get_versions_dict(self):