We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40018b7 commit a7eea77Copy full SHA for a7eea77
1 file changed
āghunt/modules/login.pyā
@@ -33,6 +33,9 @@ async def check_and_login(as_client: httpx.AsyncClient, clean: bool=False) -> No
33
except GHuntInvalidSession as e:
34
print(f"[-] {e}\n")
35
is_session_valid = False
36
+ except BaseException as e:
37
+ print(f"[-] Unexpected error : {e}\n")
38
+ is_session_valid = False
39
40
if not is_session_valid:
41
oauth_token, master_token = auth.auth_dialog()
0 commit comments