1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-02 22:21:05 +02:00

[vk] Remove unnecessary message

This commit is contained in:
Sergey M․ 2015-12-07 22:04:47 +06:00
parent c4737bea17
commit 291a93bafa

View File

@ -262,7 +262,6 @@ def _real_extract(self, url):
m_rutube = re.search( m_rutube = re.search(
r'\ssrc="((?:https?:)?//rutube\.ru\\?/video\\?/embed(?:.*?))\\?"', info_page) r'\ssrc="((?:https?:)?//rutube\.ru\\?/video\\?/embed(?:.*?))\\?"', info_page)
if m_rutube is not None: if m_rutube is not None:
self.to_screen('rutube video detected')
rutube_url = self._proto_relative_url( rutube_url = self._proto_relative_url(
m_rutube.group(1).replace('\\', '')) m_rutube.group(1).replace('\\', ''))
return self.url_result(rutube_url) return self.url_result(rutube_url)