1
0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2025-02-06 18:20:02 +00:00

Set to_generic -> True to suppress fallback msg

This commit is contained in:
John Hawkinson 2016-10-08 23:11:07 -04:00
parent 9a2ed02b65
commit 2cc84715bc

View File

@ -1,5 +1,6 @@
# coding: utf-8
from __future__ import unicode_literals
from ..utils import smuggle_url
import re
@ -82,4 +83,6 @@ class IQM2IE(InfoExtractor):
# Generic extractor matches this under the "Broaden the
# findall a little bit: JWPlayer JS loader" (line 2372 as of 6
# Oct 2016, dcdb292fddc82ae11f4c0b647815a45c88a6b6d5).
return self.url_result(inner_url, 'Generic')
return self.url_result(smuggle_url(inner_url, {'to_generic': True}),
'Generic')