diff options
author | Sergey M <dstftw@gmail.com> | 2014-10-18 21:57:24 +0700 |
---|---|---|
committer | Sergey M <dstftw@gmail.com> | 2014-10-18 21:57:24 +0700 |
commit | 159444a6688172696185404cbfea02945982e968 (patch) | |
tree | fc4334b1f951f1557319b483837a086b7f5523ad /youtube_dl/extractor | |
parent | f9befee1f5e96e8b9b7032f33e70290ffd7769f5 (diff) |
[twitch] Remove superfluous comma
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/twitch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/twitch.py b/youtube_dl/extractor/twitch.py index 247fc2f64..36aa1ad6e 100644 --- a/youtube_dl/extractor/twitch.py +++ b/youtube_dl/extractor/twitch.py @@ -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) |