diff options
author | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-07-18 04:26:50 +0530 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-07-18 05:14:55 +0530 |
commit | c6e07cf1e16ff3d1a0691067249ba3777f8c0bcb (patch) | |
tree | 17b794d1104b776aa409bd056c660c83868fd34e /yt_dlp/extractor/common.py | |
parent | ce7f6aa660250039a1ab83cb5370b5bcf88c451c (diff) | |
download | hypervideo-pre-c6e07cf1e16ff3d1a0691067249ba3777f8c0bcb.tar.lz hypervideo-pre-c6e07cf1e16ff3d1a0691067249ba3777f8c0bcb.tar.xz hypervideo-pre-c6e07cf1e16ff3d1a0691067249ba3777f8c0bcb.zip |
[cleanup] Misc
Diffstat (limited to 'yt_dlp/extractor/common.py')
-rw-r--r-- | yt_dlp/extractor/common.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp/extractor/common.py b/yt_dlp/extractor/common.py index 47c829857..f0eddcf26 100644 --- a/yt_dlp/extractor/common.py +++ b/yt_dlp/extractor/common.py @@ -931,9 +931,9 @@ class InfoExtractor: def __print_error(self, errnote, fatal, video_id, err): if fatal: - raise ExtractorError(f'{video_id}: {errnote} ', cause=err) + raise ExtractorError(f'{video_id}: {errnote}', cause=err) elif errnote: - self.report_warning(f'{video_id}: {errnote} {err}') + self.report_warning(f'{video_id}: {errnote}: {err}') def _parse_xml(self, xml_string, video_id, transform_source=None, fatal=True, errnote=None): if transform_source: |