diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-12-11 23:20:10 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-12-11 23:20:10 +0600 |
commit | 9c163950da803b11f50bff4562b38effaa000cd0 (patch) | |
tree | 8be8e7ff469e6e46980bd0dc41d10ebc3331b37e /youtube_dl/extractor/funimation.py | |
parent | d357bbd375c9e30b882dfb8cd2cded7e19a9936c (diff) |
[funimation] Improve _VALID_URL
Diffstat (limited to 'youtube_dl/extractor/funimation.py')
-rw-r--r-- | youtube_dl/extractor/funimation.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/funimation.py b/youtube_dl/extractor/funimation.py index e47fe9b73..4f382ea6f 100644 --- a/youtube_dl/extractor/funimation.py +++ b/youtube_dl/extractor/funimation.py @@ -16,7 +16,7 @@ from ..utils import ( class FunimationIE(InfoExtractor): - _VALID_URL = r'https?://(?:www\.)?funimation\.com/shows/[^/]+/videos/official/(?P<id>[^?]+)' + _VALID_URL = r'https?://(?:www\.)?funimation\.com/shows/[^/]+/videos/official/(?P<id>[^/?#&]+)' _TEST = { 'url': 'http://www.funimation.com/shows/air/videos/official/breeze', |