youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 159444a6688172696185404cbfea02945982e968
parent f9befee1f5e96e8b9b7032f33e70290ffd7769f5
Author: Sergey M <dstftw@gmail.com>
Date:   Sat, 18 Oct 2014 21:57:24 +0700

[twitch] Remove superfluous comma

Diffstat:
Myoutube_dl/extractor/twitch.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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)