mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-11 07:10:30 +00:00
[Nebula] Fix bug in 52efa4b312
This commit is contained in:
parent
5d45484cc7
commit
4c268f9cb7
@ -86,7 +86,7 @@ def inner_call():
|
|||||||
# if 401 or 403, attempt credential re-auth and retry
|
# if 401 or 403, attempt credential re-auth and retry
|
||||||
if exc.cause and isinstance(exc.cause, urllib.error.HTTPError) and exc.cause.code in (401, 403):
|
if exc.cause and isinstance(exc.cause, urllib.error.HTTPError) and exc.cause.code in (401, 403):
|
||||||
self.to_screen(f'Reauthenticating to Nebula and retrying, because last {auth_type} call resulted in error {exc.cause.code}')
|
self.to_screen(f'Reauthenticating to Nebula and retrying, because last {auth_type} call resulted in error {exc.cause.code}')
|
||||||
self._login()
|
self._perform_login()
|
||||||
return inner_call()
|
return inner_call()
|
||||||
else:
|
else:
|
||||||
raise
|
raise
|
||||||
|
Loading…
Reference in New Issue
Block a user