diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-11-22 18:24:17 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-11-22 18:24:17 +0600 |
commit | 4a7d108ab3c8b5ac82b8740179dae6a454218a38 (patch) | |
tree | c9467ae68d514da88a4465f234cc9013a1b16706 | |
parent | 1b38185361e096d6e34db11adac7333ac9dadca0 (diff) |
[rutube] Remove unnecessary print
-rw-r--r-- | youtube_dl/extractor/rutube.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/youtube_dl/extractor/rutube.py b/youtube_dl/extractor/rutube.py index 0db8c410d..6b09550b0 100644 --- a/youtube_dl/extractor/rutube.py +++ b/youtube_dl/extractor/rutube.py @@ -54,7 +54,6 @@ class RutubeIE(InfoExtractor): formats = [] for format_id, format_url in options['video_balancer'].items(): ext = determine_ext(format_url) - print(ext) if ext == 'm3u8': m3u8_formats = self._extract_m3u8_formats( format_url, video_id, 'mp4', m3u8_id=format_id, fatal=False) |