diff options
author | Sergey M․ <dstftw@gmail.com> | 2018-06-21 23:39:13 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2018-06-21 23:39:13 +0700 |
commit | 9fb62e35f6e7d865a73cc310f24ccfa0700e5e26 (patch) | |
tree | 7bb3c2cb948409725df041bf041cc3f01064036d | |
parent | b71cc719103c45365244334a4c481f88cd3534fc (diff) |
[motherless:group] Fix _VALID_URL
-rw-r--r-- | youtube_dl/extractor/motherless.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/motherless.py b/youtube_dl/extractor/motherless.py index f191310e1..bed5645f2 100644 --- a/youtube_dl/extractor/motherless.py +++ b/youtube_dl/extractor/motherless.py @@ -123,7 +123,7 @@ class MotherlessIE(InfoExtractor): class MotherlessGroupIE(InfoExtractor): - _VALID_URL = 'https?://(?:www\.)?motherless\.com/gv?/(?P<id>[a-z0-9_]+)' + _VALID_URL = r'https?://(?:www\.)?motherless\.com/gv?/(?P<id>[a-z0-9_]+)' _TESTS = [{ 'url': 'http://motherless.com/g/movie_scenes', 'info_dict': { |