diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-08-31 21:05:23 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-08-31 21:05:23 +0600 |
commit | 93462856e107237f85295357f978f2207d15723c (patch) | |
tree | 3fe2c02620e500a226ccc55a372f368e2b793a25 /youtube_dl/extractor/fc2.py | |
parent | fcd9e423ec15ac51844786541e1f5cb464eb429a (diff) |
[fc2] Relax _VALID_URL (Closes #3171)
Diffstat (limited to 'youtube_dl/extractor/fc2.py')
-rw-r--r-- | youtube_dl/extractor/fc2.py | 2 |
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 = [{ |