diff options
| author | Yen Chi Hsuan <yan12125@gmail.com> | 2015-10-18 17:16:57 +0800 | 
|---|---|---|
| committer | Yen Chi Hsuan <yan12125@gmail.com> | 2015-10-18 17:16:57 +0800 | 
| commit | e04edad621efe56347e155b6dc59a0c3d589b3bd (patch) | |
| tree | 3858311c64ae3f0897a721e8e2da3a0dbd686279 | |
| parent | f322bfb0638aeeb527459ebcf00f8a3dde26280c (diff) | |
[twitter] Inherit from InfoExtractor directly
| -rw-r--r-- | youtube_dl/extractor/twitter.py | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/youtube_dl/extractor/twitter.py b/youtube_dl/extractor/twitter.py index 48bef5d80..c9b783745 100644 --- a/youtube_dl/extractor/twitter.py +++ b/youtube_dl/extractor/twitter.py @@ -97,11 +97,11 @@ class TwitterCardIE(InfoExtractor):          } -class TwitterIE(TwitterCardIE): +class TwitterIE(InfoExtractor):      IE_NAME = 'twitter'      _VALID_URL = r'https?://(?:www|m|mobile)?\.?twitter\.com/(?P<id>[^/]+/status/\d+)' -    _TESTS = [{ +    _TEST = {          'url': 'https://twitter.com/freethenipple/status/643211948184596480',          'md5': '31cd83a116fc41f99ae3d909d4caf6a0',          'info_dict': { @@ -114,7 +114,7 @@ class TwitterIE(TwitterCardIE):              'uploader': 'FREE THE NIPPLE',              'uploader_id': 'freethenipple',          }, -    }] +    }      def _real_extract(self, url):          id = self._match_id(url) | 
