youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 48c5663c5f7dd9ecc4720f7c1522627665197939
parent 7d740e7dc7149cfd93dde1fa47e9f314e72582c2
Author: Toan Nguyen <davidnguyen1501@gmail.com>
Date:   Thu, 22 Oct 2020 19:15:05 +0700

[afreecatv] Fix typo (#26970)


Diffstat:
Myoutube_dl/extractor/afreecatv.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/afreecatv.py b/youtube_dl/extractor/afreecatv.py @@ -275,7 +275,7 @@ class AfreecaTVIE(InfoExtractor): video_element = video_xml.findall(compat_xpath('./track/video'))[-1] if video_element is None or video_element.text is None: raise ExtractorError( - 'Video %s video does not exist' % video_id, expected=True) + 'Video %s does not exist' % video_id, expected=True) video_url = video_element.text.strip()