You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's what I think is a bug in client.py line 220.
Traceback (most recent call last):
...
File "/usr/local/lib/python3.9/site-packages/hpe3parclient/client.py", line 220, in init
except exceptions as ex:
TypeError: catching classes that do not inherit from BaseException is not allowed
The code is
except exceptions as ex:
and from my perspective it should be
except Exception as ex:
The text was updated successfully, but these errors were encountered:
There's what I think is a bug in client.py line 220.
Traceback (most recent call last):
...
File "/usr/local/lib/python3.9/site-packages/hpe3parclient/client.py", line 220, in init
except exceptions as ex:
TypeError: catching classes that do not inherit from BaseException is not allowed
The code is
except exceptions as ex:
and from my perspective it should be
except Exception as ex:
The text was updated successfully, but these errors were encountered: