From 4a7d108ab3c8b5ac82b8740179dae6a454218a38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergey=20M=E2=80=A4?= Date: Sun, 22 Nov 2015 18:24:17 +0600 Subject: [PATCH] [rutube] Remove unnecessary print --- youtube_dl/extractor/rutube.py | 1 - 1 file changed, 1 deletion(-) 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)