소스 검색

[teachable] Fail with error message if no video URL found

Sergey M․ 6 년 전
부모
커밋
941e359e95
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      youtube_dl/extractor/teachable.py

+ 1 - 0
youtube_dl/extractor/teachable.py

@@ -170,6 +170,7 @@ class TeachableIE(TeachableBaseIE):
                     r'class=["\'](?:inner-)?lesson-locked',
                     r'>LESSON LOCKED<')):
                 self.raise_login_required('Lecture contents locked')
+            raise ExtractorError('Unable to find video URL')
 
         title = self._og_search_title(webpage, default=None)