aboutsummaryrefslogtreecommitdiffstats
path: root/yt_dlp/utils.py
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2021-12-02 22:55:03 -0500
committerJesús <heckyel@hyperbola.info>2021-12-02 22:55:03 -0500
commit409d6c8e3cfb4330f9a797eb5784b94c00fb4e35 (patch)
treed98bf2c149a55eca565987ee6fb1c14f271b5f72 /yt_dlp/utils.py
parent7739b37f957b098d237179534d1b8c20597d55b6 (diff)
parentd2b2fca53f635986918e364ee5b564d8e7d8af7e (diff)
downloadhypervideo-pre-409d6c8e3cfb4330f9a797eb5784b94c00fb4e35.tar.lz
hypervideo-pre-409d6c8e3cfb4330f9a797eb5784b94c00fb4e35.tar.xz
hypervideo-pre-409d6c8e3cfb4330f9a797eb5784b94c00fb4e35.zip
updated from upstream | 02/12/2021 at 22:55
Diffstat (limited to 'yt_dlp/utils.py')
-rw-r--r--yt_dlp/utils.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/utils.py b/yt_dlp/utils.py
index 5537d63be..18d531202 100644
--- a/yt_dlp/utils.py
+++ b/yt_dlp/utils.py
@@ -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):