mirror of
https://github.com/ytdl-org/youtube-dl
synced 2025-10-02 22:38:39 +09:00
[theonion] Fix a small mistake in string formatting
This commit is contained in:
@@ -36,8 +36,7 @@ class TheOnionIE(InfoExtractor):
|
||||
sources = re.findall(r'<source src="([^"]+)" type="([^"]+)"', webpage)
|
||||
if not sources:
|
||||
raise ExtractorError(
|
||||
'No sources found for video %s' % (self.IE_NAME, video_id),
|
||||
expected=True)
|
||||
'No sources found for video %s' % video_id, expected=True)
|
||||
|
||||
formats = []
|
||||
for src, type_ in sources:
|
||||
|
Reference in New Issue
Block a user