mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 06:27:21 +00:00
Fix review suggestions
This commit is contained in:
parent
dac0d4ce5c
commit
a58a2b083a
|
@ -419,7 +419,7 @@ def _call_login():
|
|||
response = _call_login()
|
||||
if traverse_obj(response, 'error'):
|
||||
raise ExtractorError(
|
||||
f'API returned error {': '.join(traverse_obj(response, (("error", "error_description"), {str})))}')
|
||||
f'API returned error {": ".join(traverse_obj(response, (("error", "error_description"), {str})))}')
|
||||
|
||||
def _real_extract(self, url):
|
||||
blog_1, blog_2, video_id = self._match_valid_url(url).groups()
|
||||
|
|
Loading…
Reference in a new issue