Browse Source

[redtube] Simplify

Philipp Hagemeister 12 years ago
parent
commit
d26d440e19
1 changed files with 0 additions and 5 deletions
  1. 0 5
      youtube_dl/extractor/redtube.py

+ 0 - 5
youtube_dl/extractor/redtube.py

@@ -1,9 +1,6 @@
 import re
 import re
 
 
 from .common import InfoExtractor
 from .common import InfoExtractor
-from ..utils import (
-    ExtractorError,
-)
 
 
 
 
 class RedTubeIE(InfoExtractor):
 class RedTubeIE(InfoExtractor):
@@ -11,8 +8,6 @@ class RedTubeIE(InfoExtractor):
 
 
     def _real_extract(self,url):
     def _real_extract(self,url):
         mobj = re.match(self._VALID_URL, url)
         mobj = re.match(self._VALID_URL, url)
-        if mobj is None:
-            raise ExtractorError(u'Invalid URL: %s' % url)
 
 
         video_id = mobj.group('id')
         video_id = mobj.group('id')
         video_extension = 'mp4'        
         video_extension = 'mp4'