summary refs log tree commit diff
diff options
context:
space:
mode:
authorPhilipp Hagemeister <phihag@phihag.de>2013-11-03 15:49:59 +0100
committerPhilipp Hagemeister <phihag@phihag.de>2013-11-03 15:49:59 +0100
commit12ebdd150624adc20a841f5fb174676b123ef826 (patch)
treeb863c7499f093638387ea893cffb55f3e3a4eb9b
parent1baf9a59388f2b10fee0f7fc60b548dc11ed08b7 (diff)
downloadyoutube-dl-12ebdd150624adc20a841f5fb174676b123ef826.tar.gz
youtube-dl-12ebdd150624adc20a841f5fb174676b123ef826.tar.xz
youtube-dl-12ebdd150624adc20a841f5fb174676b123ef826.zip
[viddler] Support non-digit IDs (Fixes #1714)
-rw-r--r--youtube_dl/extractor/viddler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/viddler.py b/youtube_dl/extractor/viddler.py
index 12c84a985..826804af3 100644
--- a/youtube_dl/extractor/viddler.py
+++ b/youtube_dl/extractor/viddler.py
@@ -8,7 +8,7 @@ from ..utils import (
 
 
 class ViddlerIE(InfoExtractor):
-    _VALID_URL = r'(?P<domain>https?://(?:www\.)?viddler.com)/(?:v|embed|player)/(?P<id>[0-9]+)'
+    _VALID_URL = r'(?P<domain>https?://(?:www\.)?viddler.com)/(?:v|embed|player)/(?P<id>[a-z0-9]+)'
     _TEST = {
         u"url": u"http://www.viddler.com/v/43903784",
         u'file': u'43903784.mp4',