]> gitweb @ CieloNegro.org - youtube-dl.git/commitdiff
[afreecatv] Fix typo (#26970)
authorToan Nguyen <davidnguyen1501@gmail.com>
Thu, 22 Oct 2020 12:15:05 +0000 (19:15 +0700)
committerGitHub <noreply@github.com>
Thu, 22 Oct 2020 12:15:05 +0000 (19:15 +0700)
youtube_dl/extractor/afreecatv.py

index 6275e5209e23401c406f6df2206b13e978d0c60e..b56abb1e604b78cfd5a0667e9703f216f8a9f8da 100644 (file)
@@ -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()