summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2014-03-23 05:13:15 +0700
committerSergey M․ <dstftw@gmail.com>2014-03-23 05:13:15 +0700
commit401983c6a0dd806932ba8a1f43c60d8e6e7899da (patch)
treecb30fa144f48c08a8911aea96daab34aa073da21
parent391dc3ee0727cf2a5f0a41e573a11c09741d842f (diff)
downloadyoutube-dl-401983c6a0dd806932ba8a1f43c60d8e6e7899da.tar.gz
youtube-dl-401983c6a0dd806932ba8a1f43c60d8e6e7899da.tar.xz
youtube-dl-401983c6a0dd806932ba8a1f43c60d8e6e7899da.zip
[metacafe] More modernize
-rw-r--r--youtube_dl/extractor/metacafe.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/youtube_dl/extractor/metacafe.py b/youtube_dl/extractor/metacafe.py
index ac47c5ccb..2f44053e0 100644
--- a/youtube_dl/extractor/metacafe.py
+++ b/youtube_dl/extractor/metacafe.py
@@ -13,7 +13,7 @@ from ..utils import (
 
 
 class MetacafeIE(InfoExtractor):
-    _VALID_URL = r'(?:http://)?(?:www\.)?metacafe\.com/watch/([^/]+)/([^/]+)/.*'
+    _VALID_URL = r'http://(?:www\.)?metacafe\.com/watch/([^/]+)/([^/]+)/.*'
     _DISCLAIMER = 'http://www.metacafe.com/family_filter/'
     _FILTER_POST = 'http://www.metacafe.com/f/index.php?inputType=filter&controllerGroup=user'
     IE_NAME = 'metacafe'
@@ -26,7 +26,7 @@ class MetacafeIE(InfoExtractor):
                 'id': '_aUehQsCQtM',
                 'ext': 'mp4',
                 'upload_date': '20090102',
-                'title': 'The Electric Company | \"Short I\" | PBS KIDS GO!',
+                'title': 'The Electric Company | "Short I" | PBS KIDS GO!',
                 'description': 'md5:2439a8ef6d5a70e380c22f5ad323e5a8',
                 'uploader': 'PBS',
                 'uploader_id': 'PBS'
@@ -86,7 +86,6 @@ class MetacafeIE(InfoExtractor):
     ]
 
     def report_disclaimer(self):
-        """Report disclaimer retrieval."""
         self.to_screen('Retrieving disclaimer')
 
     def _real_initialize(self):
@@ -103,7 +102,7 @@ class MetacafeIE(InfoExtractor):
         request.add_header('Content-Type', 'application/x-www-form-urlencoded')
         self.report_age_confirmation()
         self._download_webpage(request, None, False, 'Unable to confirm age')
-
+        """Report disclaimer retrieval."""
     def _real_extract(self, url):
         # Extract id and simplified title from URL
         mobj = re.match(self._VALID_URL, url)