aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dlc/extractor/kusi.py
diff options
context:
space:
mode:
authorTom-Oliver Heidel <github@tom-oliver.eu>2020-11-30 02:20:18 +0100
committerGitHub <noreply@github.com>2020-11-30 02:20:18 +0100
commitef5a4db06cb7667dc555f0dc1982de2c5258eb37 (patch)
treec947a547303ccf19483e83ea9d3ea77c74b5b7a8 /youtube_dlc/extractor/kusi.py
parent93201d50aa5e0bce0ecf6941cd6f9ea6c9ef86a5 (diff)
parentc78b936af4366259605e3e706bdeb5e173bf3d9b (diff)
downloadhypervideo-pre-ef5a4db06cb7667dc555f0dc1982de2c5258eb37.tar.lz
hypervideo-pre-ef5a4db06cb7667dc555f0dc1982de2c5258eb37.tar.xz
hypervideo-pre-ef5a4db06cb7667dc555f0dc1982de2c5258eb37.zip
Merge pull request #245 from pukkandan/merge-main
Merge youtube-dl and fix Youtube Feeds
Diffstat (limited to 'youtube_dlc/extractor/kusi.py')
-rw-r--r--youtube_dlc/extractor/kusi.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dlc/extractor/kusi.py b/youtube_dlc/extractor/kusi.py
index 6a7e3baa7..9833d35eb 100644
--- a/youtube_dlc/extractor/kusi.py
+++ b/youtube_dlc/extractor/kusi.py
@@ -64,7 +64,7 @@ class KUSIIE(InfoExtractor):
duration = float_or_none(xpath_text(doc, 'DURATION'), scale=1000)
description = xpath_text(doc, 'ABSTRACT')
thumbnail = xpath_text(doc, './THUMBNAILIMAGE/FILENAME')
- createtion_time = timeconvert(xpath_text(doc, 'rfc822creationdate'))
+ creation_time = timeconvert(xpath_text(doc, 'rfc822creationdate'))
quality_options = doc.find('{http://search.yahoo.com/mrss/}group').findall('{http://search.yahoo.com/mrss/}content')
formats = []
@@ -84,5 +84,5 @@ class KUSIIE(InfoExtractor):
'duration': duration,
'formats': formats,
'thumbnail': thumbnail,
- 'timestamp': createtion_time,
+ 'timestamp': creation_time,
}