1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-10-31 06:35:12 +00:00

Minor bugfixes

This commit is contained in:
pukkandan
2022-08-02 03:40:47 +05:30
parent be5c1ae862
commit 0647d9251f
8 changed files with 26 additions and 15 deletions

View File

@@ -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)