mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
retry on UnavailableVideoError
This commit is contained in:
parent
f375d4b7de
commit
90a99c1b5e
1 changed files with 1 additions and 1 deletions
|
@ -102,7 +102,7 @@ def _hook(status):
|
||||||
if retry == RETRIES: raise
|
if retry == RETRIES: raise
|
||||||
|
|
||||||
# Check if the exception is not a network related one
|
# Check if the exception is not a network related one
|
||||||
if not err.exc_info[0] in (ZeroDivisionError, compat_urllib_error.URLError, socket.timeout):
|
if not err.exc_info[0] in (compat_urllib_error.URLError, socket.timeout, UnavailableVideoError):
|
||||||
raise
|
raise
|
||||||
|
|
||||||
print('Retrying: {0} failed tries\n\n##########\n\n'.format(retry))
|
print('Retrying: {0} failed tries\n\n##########\n\n'.format(retry))
|
||||||
|
|
Loading…
Reference in a new issue