mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
- fixing suitable
This commit is contained in:
parent
c2baf165e4
commit
377be41755
1 changed files with 4 additions and 0 deletions
|
@ -134,6 +134,10 @@ class AluraCourseIE(AluraIE):
|
|||
'only_matching': True,
|
||||
}]
|
||||
|
||||
@classmethod
|
||||
def suitable(cls, url):
|
||||
return False if AluraIE.suitable(url) else super(AluraCourseIE, cls).suitable(url)
|
||||
|
||||
def _real_extract(self, url):
|
||||
|
||||
course_path = self._match_id(url)
|
||||
|
|
Loading…
Reference in a new issue