diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2014-08-24 03:37:19 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2014-08-24 03:37:19 +0200 |
commit | f56f8399c7a222dd07cbf09b02c212509f2ad805 (patch) | |
tree | c09a26879369e9eb4cbf86f5d5ce6367870a1411 /youtube_dl/extractor/ebaumsworld.py | |
parent | cf0c5fa3a1a6a03b56bbcdfc17dd50637a77724c (diff) |
[ebaumsworld] Remove spurious determine_ext
Diffstat (limited to 'youtube_dl/extractor/ebaumsworld.py')
-rw-r--r-- | youtube_dl/extractor/ebaumsworld.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/youtube_dl/extractor/ebaumsworld.py b/youtube_dl/extractor/ebaumsworld.py index 046976743..63c2549d3 100644 --- a/youtube_dl/extractor/ebaumsworld.py +++ b/youtube_dl/extractor/ebaumsworld.py @@ -3,7 +3,6 @@ from __future__ import unicode_literals import re from .common import InfoExtractor -from ..utils import determine_ext class EbaumsWorldIE(InfoExtractor): @@ -31,7 +30,6 @@ class EbaumsWorldIE(InfoExtractor): 'id': video_id, 'title': config.find('title').text, 'url': video_url, - 'ext': determine_ext(video_url), 'description': config.find('description').text, 'thumbnail': config.find('image').text, 'uploader': config.find('username').text, |