[twitch] Remove superfluous comma
authorSergey M <dstftw@gmail.com>
Sat, 18 Oct 2014 14:57:24 +0000 (21:57 +0700)
committerSergey M <dstftw@gmail.com>
Sat, 18 Oct 2014 14:57:24 +0000 (21:57 +0700)
youtube_dl/extractor/twitch.py

index 247fc2f64932a5b0e35c0cfbb882ef8a94691308..36aa1ad6ec578859d90c947dee9c39213dcfda59 100644 (file)
@@ -90,7 +90,7 @@ class TwitchIE(InfoExtractor):
                 formats.append(fmt)
             self._sort_formats(formats)
             entry = dict(info)
-            entry['id'] = '%s_%d' % (entry['id'], num),
+            entry['id'] = '%s_%d' % (entry['id'], num)
             entry['title'] = '%s part %d' % (entry['title'], num)
             entry['formats'] = formats
             entries.append(entry)