From 41406fe8c1279fc947896e0d984ae6f1301fe777 Mon Sep 17 00:00:00 2001 From: runraid Date: Sun, 5 Jul 2020 11:45:51 -0700 Subject: [PATCH] flake --- youtube_dl/extractor/tiktok.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/youtube_dl/extractor/tiktok.py b/youtube_dl/extractor/tiktok.py index 488f65709..cd3ef3b23 100644 --- a/youtube_dl/extractor/tiktok.py +++ b/youtube_dl/extractor/tiktok.py @@ -63,7 +63,6 @@ class TikTokIE(InfoExtractor): share_info = try_get(video_data, lambda x: x['shareMeta'], dict) unique_id = str_or_none(author_info.get('uniqueId')) timestamp = try_get(video_info, lambda x: int(x['createTime']), int) - date = datetime.fromtimestamp(timestamp).strftime('%Y%m%d') height = try_get(video_info, lambda x: x['video']['videoMeta']['height'], int) width = try_get(video_info, lambda x: x['video']['videoMeta']['width'], int) thumbnails = [] @@ -96,7 +95,6 @@ class TikTokIE(InfoExtractor): 'thumbnail': try_get(video_info, lambda x: x['covers'][0], str), 'timestamp': timestamp, 'width': width, - 'title': self._og_search_title(webpage), 'creator': str_or_none(author_info.get('nickName')), 'uploader': unique_id, 'uploader_id': str_or_none(author_info.get('userId')),