summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2014-08-24 03:31:38 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2014-08-24 03:31:38 +0200
commitcf0c5fa3a1a6a03b56bbcdfc17dd50637a77724c (patch)
treeefad8848d4bbb74fd516aba83738a7a9b7ccea69
parent8c2ccefae657c0347968b27c8713a6e262d59f7e (diff)
downloadyoutube-dl-cf0c5fa3a1a6a03b56bbcdfc17dd50637a77724c.tar.gz
youtube-dl-cf0c5fa3a1a6a03b56bbcdfc17dd50637a77724c.tar.xz
youtube-dl-cf0c5fa3a1a6a03b56bbcdfc17dd50637a77724c.zip
[ebaumsworld] Modernize
-rw-r--r--youtube_dl/extractor/ebaumsworld.py15
1 files changed, 9 insertions, 6 deletions
diff --git a/youtube_dl/extractor/ebaumsworld.py b/youtube_dl/extractor/ebaumsworld.py
index 877113d63..046976743 100644
--- a/youtube_dl/extractor/ebaumsworld.py
+++ b/youtube_dl/extractor/ebaumsworld.py
@@ -1,3 +1,5 @@
+from __future__ import unicode_literals
+
 import re
 
 from .common import InfoExtractor
@@ -8,12 +10,13 @@ class EbaumsWorldIE(InfoExtractor):
     _VALID_URL = r'https?://www\.ebaumsworld\.com/video/watch/(?P<id>\d+)'
 
     _TEST = {
-        u'url': u'http://www.ebaumsworld.com/video/watch/83367677/',
-        u'file': u'83367677.mp4',
-        u'info_dict': {
-            u'title': u'A Giant Python Opens The Door',
-            u'description': u'This is how nightmares start...',
-            u'uploader': u'jihadpizza',
+        'url': 'http://www.ebaumsworld.com/video/watch/83367677/',
+        'info_dict': {
+            'id': '83367677',
+            'ext': 'mp4',
+            'title': 'A Giant Python Opens The Door',
+            'description': 'This is how nightmares start...',
+            'uploader': 'jihadpizza',
         },
     }