Minor bugfixes

This commit is contained in:
pukkandan 2022-08-02 03:40:47 +05:30
parent be5c1ae862
commit 0647d9251f
No known key found for this signature in database
GPG key ID: 7EEE9E1E817D0A39
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)