summary refs log tree commit diff
diff options
context:
space:
mode:
authorToan Nguyen <davidnguyen1501@gmail.com>2020-10-22 19:15:05 +0700
committerGitHub <noreply@github.com>2020-10-22 19:15:05 +0700
commit48c5663c5f7dd9ecc4720f7c1522627665197939 (patch)
tree40aad2ec29d9e53b4b2b318134c666885db69051
parent7d740e7dc7149cfd93dde1fa47e9f314e72582c2 (diff)
downloadyoutube-dl-48c5663c5f7dd9ecc4720f7c1522627665197939.tar.gz
youtube-dl-48c5663c5f7dd9ecc4720f7c1522627665197939.tar.xz
youtube-dl-48c5663c5f7dd9ecc4720f7c1522627665197939.zip
[afreecatv] Fix typo (#26970)
-rw-r--r--youtube_dl/extractor/afreecatv.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/afreecatv.py b/youtube_dl/extractor/afreecatv.py
index 6275e5209..b56abb1e6 100644
--- 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()