summary refs log tree commit diff
diff options
context:
space:
mode:
authorremitamine <remitamine@gmail.com>2015-10-03 14:17:17 +0100
committerremitamine <remitamine@gmail.com>2015-10-03 14:17:17 +0100
commit97d5bfcba65c8575ab06a34e91fae30a5fda3161 (patch)
tree2aeca8dcb77146234d359d7d76f6d922ac96207a
parentbad84757eb135b85d5a1b29524a064d23ab4e1e9 (diff)
downloadyoutube-dl-97d5bfcba65c8575ab06a34e91fae30a5fda3161.tar.gz
youtube-dl-97d5bfcba65c8575ab06a34e91fae30a5fda3161.tar.xz
youtube-dl-97d5bfcba65c8575ab06a34e91fae30a5fda3161.zip
[engadget] accept short video urls
-rw-r--r--youtube_dl/extractor/engadget.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/engadget.py b/youtube_dl/extractor/engadget.py
index 4ea37ebd9..e4180701d 100644
--- a/youtube_dl/extractor/engadget.py
+++ b/youtube_dl/extractor/engadget.py
@@ -10,7 +10,7 @@ from ..utils import (
 
 class EngadgetIE(InfoExtractor):
     _VALID_URL = r'''(?x)https?://www.engadget.com/
-        (?:video/5min/(?P<id>\d+)|
+        (?:video(?:/5min)?/(?P<id>\d+)|
             [\d/]+/.*?)
         '''