Browse Source

[twitch] Remove superfluous comma

totalwebcasting
Sergey M 10 years ago
parent
commit
159444a668
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/twitch.py

+ 1
- 1
youtube_dl/extractor/twitch.py View 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)


Loading…
Cancel
Save