summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-08-31 21:05:23 +0600
committerSergey M․ <dstftw@gmail.com>2015-08-31 21:05:23 +0600
commit93462856e107237f85295357f978f2207d15723c (patch)
tree3fe2c02620e500a226ccc55a372f368e2b793a25
parentfcd9e423ec15ac51844786541e1f5cb464eb429a (diff)
downloadyoutube-dl-93462856e107237f85295357f978f2207d15723c.tar.gz
youtube-dl-93462856e107237f85295357f978f2207d15723c.tar.xz
youtube-dl-93462856e107237f85295357f978f2207d15723c.zip
[fc2] Relax _VALID_URL (Closes #3171)
-rw-r--r--youtube_dl/extractor/fc2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/fc2.py b/youtube_dl/extractor/fc2.py
index e4f7195a8..1c6dc5bd9 100644
--- a/youtube_dl/extractor/fc2.py
+++ b/youtube_dl/extractor/fc2.py
@@ -15,7 +15,7 @@ from ..utils import (
 
 
 class FC2IE(InfoExtractor):
-    _VALID_URL = r'^http://video\.fc2\.com/(?:[^/]+/)?content/(?P<id>[^/]+)'
+    _VALID_URL = r'^http://video\.fc2\.com/(?:[^/]+/)*content/(?P<id>[^/]+)'
     IE_NAME = 'fc2'
     _NETRC_MACHINE = 'fc2'
     _TESTS = [{