diff options
author | remitamine <remitamine@gmail.com> | 2015-12-21 11:12:58 +0100 |
---|---|---|
committer | remitamine <remitamine@gmail.com> | 2015-12-21 11:12:58 +0100 |
commit | c7fa5fa42cb91aa32c5b21c6821f6d190ec047a2 (patch) | |
tree | 66c95508edb298a3909b5c4e63f4bf8d9780f888 /youtube_dl/extractor/dramafever.py | |
parent | 63b728f06f00c2f1a45a67eddebd18bcdc36a753 (diff) |
[bleacherreport] fix style issues and simplify
Diffstat (limited to 'youtube_dl/extractor/dramafever.py')
-rw-r--r-- | youtube_dl/extractor/dramafever.py | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/youtube_dl/extractor/dramafever.py b/youtube_dl/extractor/dramafever.py index 80a928827..2a4310754 100644 --- a/youtube_dl/extractor/dramafever.py +++ b/youtube_dl/extractor/dramafever.py @@ -13,9 +13,6 @@ from ..compat import ( from ..utils import ( ExtractorError, clean_html, - determine_ext, - int_or_none, - parse_iso8601, ) @@ -91,7 +88,8 @@ class DramaFeverIE(DramaFeverBaseIE): video_id = self._match_id(url).replace('/', '.') try: - info = self._extract_feed_info('http://www.dramafever.com/amp/episode/feed.json?guid=%s' % video_id) + info = self._extract_feed_info( + 'http://www.dramafever.com/amp/episode/feed.json?guid=%s' % video_id) except ExtractorError as e: if isinstance(e.cause, compat_HTTPError): raise ExtractorError( |