Trivial fix of bare except clause

This commit is contained in:
moshferatu 2024-04-21 07:57:32 -07:00
parent f3289a47c3
commit 8bba1541a1

View File

@ -24,7 +24,7 @@ def connection_successful():
try: try:
Client() Client()
return True return True
except: except Exception:
return False return False
if __name__ == '__main__': if __name__ == '__main__':