about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2011-09-15 20:25:22 +0200
committerPhilipp Hagemeister <phihag@phihag.de>2011-09-15 20:25:22 +0200
commit2d8acd8039af34260b98db5f6bc5d2532a82f91a (patch)
tree2450d126c4403c1c59f2588e36cd855ed9443866
parent67035ede49520a3cab088315976d20d5dcbf2b26 (diff)
downloadyoutube-dl-2d8acd8039af34260b98db5f6bc5d2532a82f91a.tar.gz
youtube-dl-2d8acd8039af34260b98db5f6bc5d2532a82f91a.tar.xz
youtube-dl-2d8acd8039af34260b98db5f6bc5d2532a82f91a.zip
Fix escapist URL match
-rwxr-xr-xyoutube-dl2
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):