diff options
author | remitamine <remitamine@gmail.com> | 2016-04-15 19:04:37 +0100 |
---|---|---|
committer | remitamine <remitamine@gmail.com> | 2016-04-15 19:06:13 +0100 |
commit | f3a58d46bf969b33910479a3a6096635e793a553 (patch) | |
tree | 0c2f2f54bd89fff5b9a3b6bebbd6e0afbbdd148a /youtube_dl/extractor/youtube.py | |
parent | b6612c9b11888e268874b4863b5cc2ef6ec2208a (diff) |
[youtube:user] check if the url didn't match only the other youtube extractors
Diffstat (limited to 'youtube_dl/extractor/youtube.py')
-rw-r--r-- | youtube_dl/extractor/youtube.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py index 5a102de51..44c1191bd 100644 --- a/youtube_dl/extractor/youtube.py +++ b/youtube_dl/extractor/youtube.py @@ -1987,8 +1987,8 @@ class YoutubeUserIE(YoutubeChannelIE): def suitable(cls, url): # Don't return True if the url can be extracted with other youtube # extractor, the regex would is too permissive and it would match. - other_ies = iter(klass for (name, klass) in globals().items() if name.endswith('IE') and klass is not cls) - if any(ie.suitable(url) for ie in other_ies): + other_yt_ies = iter(klass for (name, klass) in globals().items() if name.startswith('Youtube') and name.endswith('IE') and klass is not cls) + if any(ie.suitable(url) for ie in other_yt_ies): return False else: return super(YoutubeUserIE, cls).suitable(url) |