diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-04-30 10:02:03 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-04-30 10:02:08 +0200 |
commit | acd69589a54d03f60a018a298c74a4c8aef2abc2 (patch) | |
tree | 3b5bc9562ec450c4e89fafdf914740193c80b0b8 /youtube_dl/extractor/vine.py | |
parent | b30b8698ea11e85079cc9e392cdf26f4e61671c4 (diff) |
[YoutubeDL] Do not require default output template to be set
Diffstat (limited to 'youtube_dl/extractor/vine.py')
-rw-r--r-- | youtube_dl/extractor/vine.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/vine.py b/youtube_dl/extractor/vine.py index 5bbc8ba88..689b8dc2a 100644 --- a/youtube_dl/extractor/vine.py +++ b/youtube_dl/extractor/vine.py @@ -31,7 +31,7 @@ class VineIE(InfoExtractor): data = json.loads(self._html_search_regex( r'window\.POST_DATA = { %s: ({.+?}) }' % video_id, webpage, 'vine data')) - + print(json.dumps(data, indent=2)) formats = [ { 'url': data['videoLowURL'], @@ -57,4 +57,4 @@ class VineIE(InfoExtractor): 'comment_count': data['comments']['count'], 'repost_count': data['reposts']['count'], 'formats': formats, - }
\ No newline at end of file + } |