diff options
author | Toan Nguyen <davidnguyen1501@gmail.com> | 2020-10-22 19:15:05 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-22 19:15:05 +0700 |
commit | 48c5663c5f7dd9ecc4720f7c1522627665197939 (patch) | |
tree | 40aad2ec29d9e53b4b2b318134c666885db69051 | |
parent | 7d740e7dc7149cfd93dde1fa47e9f314e72582c2 (diff) |
[afreecatv] Fix typo (#26970)
-rw-r--r-- | youtube_dl/extractor/afreecatv.py | 2 |
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() |