diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2011-09-15 20:25:22 +0200 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2011-09-15 20:25:22 +0200 |
commit | 2d8acd8039af34260b98db5f6bc5d2532a82f91a (patch) | |
tree | 2450d126c4403c1c59f2588e36cd855ed9443866 | |
parent | 67035ede49520a3cab088315976d20d5dcbf2b26 (diff) |
Fix escapist URL match
-rwxr-xr-x | youtube-dl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube-dl b/youtube-dl index 1d7087a34..8b525e7d3 100755 --- a/youtube-dl +++ b/youtube-dl @@ -3175,7 +3175,7 @@ class ComedyCentralIE(InfoExtractor): class EscapistIE(InfoExtractor): """Information extractor for The Escapist """ - _VALID_URL = r'^(https?://)?(www\.)escapistmagazine.com/videos/view/(?P<showname>[^/]+)/(?P<episode>[^/?]+)[/?].*$' + _VALID_URL = r'^(https?://)?(www\.)?escapistmagazine.com/videos/view/(?P<showname>[^/]+)/(?P<episode>[^/?]+)[/?]?.*$' IE_NAME = u'escapist' def report_extraction(self, showName): |