Fix `--throttled-rate`

pull/1884/head
pukkandan 2021-12-03 02:52:03 +05:30
rodzic 99148c6a33
commit 43b2290658
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0F00D95A001F4698
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -2608,8 +2608,8 @@ class ThrottledDownload(ReExtractInfo):
""" Download speed below --throttled-rate. """
msg = 'The download speed is below throttle limit'
def __init__(self, msg):
super().__init__(msg, expected=False)
def __init__(self):
super().__init__(self.msg, expected=False)
class UnavailableVideoError(YoutubeDLError):