diff options
| author | Sergey M․ <dstftw@gmail.com> | 2015-07-13 22:11:05 +0600 | 
|---|---|---|
| committer | Sergey M․ <dstftw@gmail.com> | 2015-07-13 22:11:05 +0600 | 
| commit | 6dfa0602f059397d9a41ef382d9dfa8b432ff0fa (patch) | |
| tree | f8afc0b5ea4d781fae3c266f7c49cce47b81af43 | |
| parent | 28fb109ed0276e85207966ac925e9885c2ed0e7b (diff) | |
[nowtv] Fix extraction (Closes #6169)
| -rw-r--r-- | youtube_dl/extractor/nowtv.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/nowtv.py b/youtube_dl/extractor/nowtv.py index 173e46cd8..0b5ff4760 100644 --- a/youtube_dl/extractor/nowtv.py +++ b/youtube_dl/extractor/nowtv.py @@ -133,7 +133,7 @@ class NowTVIE(InfoExtractor):          station = mobj.group('station')          info = self._download_json( -            'https://api.nowtv.de/v3/movies/%s?fields=*,format,files' % display_id, +            'https://api.nowtv.de/v3/movies/%s?fields=id,title,free,geoblocked,articleLong,articleShort,broadcastStartDate,seoUrl,duration,format,files' % display_id,              display_id)          video_id = compat_str(info['id'])  | 
