about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-08-24 03:37:19 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-08-24 03:37:19 +0200
commitf56f8399c7a222dd07cbf09b02c212509f2ad805 (patch)
treec09a26879369e9eb4cbf86f5d5ce6367870a1411
parentcf0c5fa3a1a6a03b56bbcdfc17dd50637a77724c (diff)
downloadyoutube-dl-f56f8399c7a222dd07cbf09b02c212509f2ad805.tar.gz
youtube-dl-f56f8399c7a222dd07cbf09b02c212509f2ad805.tar.xz
youtube-dl-f56f8399c7a222dd07cbf09b02c212509f2ad805.zip
[ebaumsworld] Remove spurious determine_ext
-rw-r--r--youtube_dl/extractor/ebaumsworld.py2
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,