mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 01:02:48 +01:00
- fixing suitable
This commit is contained in:
parent
c2baf165e4
commit
377be41755
@ -134,6 +134,10 @@ class AluraCourseIE(AluraIE):
|
|||||||
'only_matching': True,
|
'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):
|
def _real_extract(self, url):
|
||||||
|
|
||||||
course_path = self._match_id(url)
|
course_path = self._match_id(url)
|
||||||
|
Loading…
Reference in New Issue
Block a user