]> jfr.im git - yt-dlp.git/blobdiff - youtube_dlc/extractor/kusi.py
Updated to release 2020.11.21.1
[yt-dlp.git] / youtube_dlc / extractor / kusi.py
index 6a7e3baa70cc019b497828ab84d176e55216356f..9833d35ebcdddb5aabee54e0b0f44f8b5c6c3c40 100644 (file)
@@ -64,7 +64,7 @@ def _real_extract(self, url):
         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 @@ def _real_extract(self, url):
             'duration': duration,
             'formats': formats,
             'thumbnail': thumbnail,
-            'timestamp': createtion_time,
+            'timestamp': creation_time,
         }