mirror of
https://github.com/blackjack4494/yt-dlc.git
synced 2024-12-21 23:33:10 +00: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,
|
'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 a new issue