diff options
author | Andrey Smirnoff <37037851+mashed-potatoes@users.noreply.github.com> | 2020-12-10 00:01:23 +0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-10 02:01:23 +0700 |
commit | b69bb1ed119d07b83cf88ca95b87773209f14d3b (patch) | |
tree | f732b7e637db3e810129e6d724e4696433f6d7a6 /youtube_dl/extractor/generic.py | |
parent | 772cefef8c9bf467089e65a6890660ca9bfd83b8 (diff) |
[smotri] Remove extractor (#27358)
Diffstat (limited to 'youtube_dl/extractor/generic.py')
-rw-r--r-- | youtube_dl/extractor/generic.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/youtube_dl/extractor/generic.py b/youtube_dl/extractor/generic.py index 9eba9614f..80ecaf795 100644 --- a/youtube_dl/extractor/generic.py +++ b/youtube_dl/extractor/generic.py @@ -52,7 +52,6 @@ from .ooyala import OoyalaIE from .rutv import RUTVIE from .tvc import TVCIE from .sportbox import SportBoxIE -from .smotri import SmotriIE from .myvi import MyviIE from .condenast import CondeNastIE from .udn import UDNEmbedIE @@ -2815,11 +2814,6 @@ class GenericIE(InfoExtractor): if mobj is not None: return self.url_result(mobj.group('url')) - # Look for embedded smotri.com player - smotri_url = SmotriIE._extract_url(webpage) - if smotri_url: - return self.url_result(smotri_url, 'Smotri') - # Look for embedded Myvi.ru player myvi_url = MyviIE._extract_url(webpage) if myvi_url: |