From d75f2bbbc5579870c5793cd8a296b33f1c98df56 Mon Sep 17 00:00:00 2001 From: Napsty Date: Fri, 14 Feb 2025 14:14:52 +0100 Subject: [PATCH] Update to newer pywbem exception call --- check_esxi_hardware.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/check_esxi_hardware.py b/check_esxi_hardware.py index fe41ddb..58a2bcd 100755 --- a/check_esxi_hardware.py +++ b/check_esxi_hardware.py @@ -300,7 +300,7 @@ #@--------------------------------------------------- #@ Date : 20250214 #@ Author : Claudio Kuenzler -#@ Reason : Update to newer pywbem exception call, handle HTTPError +#@ Reason : Update to newer pywbem exception call, catch HTTPError #@--------------------------------------------------- import sys @@ -742,7 +742,7 @@ verboseoutput("Found pywbem version "+pywbemversion) verboseoutput("Connection to "+hosturl) wbemclient = pywbem.WBEMConnection(hosturl, (user,password), NS, no_verification=True) -# Backward compatibility for pywbem <= 1.0.0 +# Backward compatibility for older pywbem exceptions, big thanks to Claire M.! if Version(pywbemversion) >= Version("1.0.0"): verboseoutput("pywbem is 1.0.0 or newer") import pywbem._cim_operations as PywbemCimOperations