1
0
mirror of https://codeberg.org/polarisfm/youtube-dl synced 2024-11-25 18:04:33 +01:00

Add suitable method for BandcampUser

This commit is contained in:
Lyz 2019-03-08 13:18:01 +01:00
parent 39506ecd2c
commit dcec01dc12
No known key found for this signature in database
GPG Key ID: 6C7D7C1612CDE02F

View File

@ -430,6 +430,12 @@ class BandcampUserIE(InfoExtractor):
'playlist_count': 1, 'playlist_count': 1,
}] }]
@classmethod
def suitable(cls, url):
return (False
if BandcampAlbumIE.suitable(url)
else super(BandcampUserIE, cls).suitable(url))
def _real_extract(self, url): def _real_extract(self, url):
uploader = self._match_id(url) uploader = self._match_id(url)