summary refs log tree commit diff
diff options
context:
space:
mode:
authorremitamine <remitamine@gmail.com>2015-10-15 14:37:05 +0100
committerremitamine <remitamine@gmail.com>2015-10-15 14:37:05 +0100
commit497ca088a60fdd0a98f16e22a9d4fec135a26ab0 (patch)
treeebb5766530e197cc2e1ed96ab6e64a3c63c8fc53
parent90bddb6cdd59107d137c13970dc50a6193d204a7 (diff)
downloadyoutube-dl-497ca088a60fdd0a98f16e22a9d4fec135a26ab0.tar.gz
youtube-dl-497ca088a60fdd0a98f16e22a9d4fec135a26ab0.tar.xz
youtube-dl-497ca088a60fdd0a98f16e22a9d4fec135a26ab0.zip
[ooyala] remove print statment
-rw-r--r--youtube_dl/extractor/ooyala.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/youtube_dl/extractor/ooyala.py b/youtube_dl/extractor/ooyala.py
index 592cdc564..df99a39f4 100644
--- a/youtube_dl/extractor/ooyala.py
+++ b/youtube_dl/extractor/ooyala.py
@@ -12,7 +12,6 @@ from ..utils import (
 class OoyalaBaseIE(InfoExtractor):
 
     def _extract(self, player_url, video_id):
-        print(player_url)
         content_tree = self._download_json(player_url, video_id)['content_tree']
         metadata = content_tree[list(content_tree)[0]]
         embed_code = metadata['embed_code']