Skip to content

Commit

Permalink
[afreecatv] Fix typo (ytdl-org#26970)
Browse files Browse the repository at this point in the history
  • Loading branch information
upbooo authored Oct 22, 2020
1 parent 7d740e7 commit 48c5663
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion youtube_dl/extractor/afreecatv.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ def _real_extract(self, url):
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()

Expand Down

0 comments on commit 48c5663

Please sign in to comment.