- fixing suitable

This commit is contained in:
Hugo Alves De Azevedo 2020-08-28 15:21:52 -03:00
parent c2baf165e4
commit 377be41755
1 changed files with 4 additions and 0 deletions

View File

@ -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)