youtube-dl

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

commit 0049594efb3141cedd1373a47f9016b5588e8dd9
parent 1f8c19767bd135c4e0edd99c37ff28d12e8429ae
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Wed, 30 Apr 2014 14:12:30 +0200

[vine] Remove debugging code

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

diff --git 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'],