diff options
author | Sergey M․ <dstftw@gmail.com> | 2018-12-10 10:10:28 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2018-12-10 10:10:28 +0700 |
commit | 102a4e54c5c0819233773cc15398bc901a218f4c (patch) | |
tree | 81c02774168ca48598f136017143e3a35c356bc4 /youtube_dl/extractor | |
parent | 6e29458f2479c4535f8605032b9492f52bb37f17 (diff) |
[teachable] Remove debug output
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/teachable.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/youtube_dl/extractor/teachable.py b/youtube_dl/extractor/teachable.py index a0c46b2e6..47ac95ee8 100644 --- a/youtube_dl/extractor/teachable.py +++ b/youtube_dl/extractor/teachable.py @@ -135,7 +135,6 @@ class TeachableIE(TeachableBaseIE): @staticmethod def _extract_url(webpage, source_url): if not TeachableIE._is_teachable(webpage): - print('NOT TEACHABLE') return if re.match(r'https?://[^/]+/(?:courses|p)', source_url): return '%s%s' % (TeachableBaseIE._URL_PREFIX, source_url) |