aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-04-30 14:12:30 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-04-30 14:12:30 +0200
commit0049594efb3141cedd1373a47f9016b5588e8dd9 (patch)
tree50e3baf76669cb0984cf1b2a56041fc4e03fa088
parent1f8c19767bd135c4e0edd99c37ff28d12e8429ae (diff)
downloadyoutube-dl-0049594efb3141cedd1373a47f9016b5588e8dd9.tar.xz
[vine] Remove debugging code
-rw-r--r--youtube_dl/extractor/vine.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/vine.py b/youtube_dl/extractor/vine.py
index 689b8dc2a..5136ec466 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'],