diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-11-21 22:03:29 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-11-21 22:03:29 +0100 |
commit | 71069d215791a85dc627ec3dcfa0a87f3d5643eb (patch) | |
tree | 94d83781782ce07b0610e667723bea7ad0b332c2 /youtube_dl | |
parent | f3391db88925782e4814e8eaa3eb9808c30d6f01 (diff) |
[sztv] Remove useless determine_ext call
Diffstat (limited to 'youtube_dl')
-rw-r--r-- | youtube_dl/extractor/sztvhu.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/youtube_dl/extractor/sztvhu.py b/youtube_dl/extractor/sztvhu.py index 804a25e22..aa5964acb 100644 --- a/youtube_dl/extractor/sztvhu.py +++ b/youtube_dl/extractor/sztvhu.py @@ -2,7 +2,6 @@ from __future__ import unicode_literals from .common import InfoExtractor -from ..utils import determine_ext class SztvHuIE(InfoExtractor): @@ -37,7 +36,6 @@ class SztvHuIE(InfoExtractor): 'id': video_id, 'url': video_url, 'title': title, - 'ext': determine_ext(video_url), 'description': description, 'thumbnail': thumbnail, } |