summary refs log tree commit diff
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2021-02-02 19:05:37 +0100
committerRemita Amine <remitamine@gmail.com>2021-02-02 19:05:37 +0100
commitb111a64135244b73b86a1720e9a5212e726afcbf (patch)
tree43333a99411ab8f62f894ef0f6650f5066b9b826
parent0e3a9684795c6c53546dace9e917ed11c4ae72a5 (diff)
downloadyoutube-dl-b111a64135244b73b86a1720e9a5212e726afcbf.tar.gz
youtube-dl-b111a64135244b73b86a1720e9a5212e726afcbf.tar.xz
youtube-dl-b111a64135244b73b86a1720e9a5212e726afcbf.zip
[egghead] fix typo
-rw-r--r--youtube_dl/extractor/egghead.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/extractor/egghead.py b/youtube_dl/extractor/egghead.py
index 94dd75b9b..aff9b88c0 100644
--- a/youtube_dl/extractor/egghead.py
+++ b/youtube_dl/extractor/egghead.py
@@ -16,7 +16,7 @@ class EggheadBaseIE(InfoExtractor):
     def _call_api(self, path, video_id, resource, fatal=True):
         return self._download_json(
             'https://app.egghead.io/api/v1/' + path,
-            video_id, 'Downloading %s JSON' % resource)
+            video_id, 'Downloading %s JSON' % resource, fatal=fatal)
 
 
 class EggheadCourseIE(EggheadBaseIE):
@@ -79,7 +79,7 @@ class EggheadLessonIE(EggheadBaseIE):
             'upload_date': '20161209',
             'duration': 304,
             'view_count': 0,
-            'tags': ['free', 'javascript'],
+            'tags': 'count:2',
         },
         'params': {
             'skip_download': True,