diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-08-11 01:17:41 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-08-11 01:17:41 +0600 |
commit | b29440aee64027b3e4145070b0235193752b4d9f (patch) | |
tree | c58b7611d7d1a671af50a5941013ae33c610fcff | |
parent | 844587669eeffaf139b9c8888550c9d3b88335e7 (diff) |
[vimeo:user] Do not match watchlater
-rw-r--r-- | youtube_dl/extractor/vimeo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/vimeo.py b/youtube_dl/extractor/vimeo.py index 1eeb4618e..50df79ca1 100644 --- a/youtube_dl/extractor/vimeo.py +++ b/youtube_dl/extractor/vimeo.py @@ -505,7 +505,7 @@ class VimeoChannelIE(VimeoBaseInfoExtractor): class VimeoUserIE(VimeoChannelIE): IE_NAME = 'vimeo:user' - _VALID_URL = r'https://vimeo\.com/(?![0-9]+(?:$|[?#/]))(?P<name>[^/]+)(?:/videos|[#?]|$)' + _VALID_URL = r'https://vimeo\.com/(?!(?:[0-9]+|watchlater)(?:$|[?#/]))(?P<name>[^/]+)(?:/videos|[#?]|$)' _TITLE_RE = r'<a[^>]+?class="user">([^<>]+?)</a>' _TESTS = [{ 'url': 'https://vimeo.com/nkistudio/videos', |