mirror of
https://github.com/LucBerge/yt-dlp.git
synced 2025-03-17 19:57:52 +03:00
Minor bugfixes
This commit is contained in:
parent
be5c1ae862
commit
0647d9251f
8 changed files with 26 additions and 15 deletions
|
@ -5707,6 +5707,11 @@ class RetryManager:
|
|||
time.sleep(delay)
|
||||
|
||||
|
||||
def make_archive_id(ie, video_id):
|
||||
ie_key = ie if isinstance(ie, str) else ie.ie_key()
|
||||
return f'{ie_key.lower()} {video_id}'
|
||||
|
||||
|
||||
# Deprecated
|
||||
has_certifi = bool(certifi)
|
||||
has_websockets = bool(websockets)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue