Browse Source

[theonion] Fix a small mistake in string formatting

Naglis Jonaitis 11 years ago
parent
commit
d18be55533
1 changed files with 1 additions and 2 deletions
  1. 1 2
      youtube_dl/extractor/theonion.py

+ 1 - 2
youtube_dl/extractor/theonion.py

@@ -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: