diff --git a/pyghmi/redfish/oem/lenovo/main.py b/pyghmi/redfish/oem/lenovo/main.py index 7ab1281e..faaae495 100644 --- a/pyghmi/redfish/oem/lenovo/main.py +++ b/pyghmi/redfish/oem/lenovo/main.py @@ -56,7 +56,7 @@ def get_handler(sysinfo, sysurl, webclient, cache, cmd, rootinfo={}): try: devdesc = webclient.grab_json_response_with_status('/DeviceDescription.json') if devdesc[1] == 200: - if devdesc[0]['type'].lower() == 'lenovo-smm3': + if devdesc[0]['type'].lower() in ('lenovo-smm3', 'smm3'): return smm3.OEMHandler(sysinfo, sysurl, webclient, cache, gpool=cmd._gpool) except Exception: pass