diff options
author | James Taylor <user234683@users.noreply.github.com> | 2019-08-23 14:48:00 -0700 |
---|---|---|
committer | James Taylor <user234683@users.noreply.github.com> | 2019-08-23 14:48:00 -0700 |
commit | 85572c94de77f4a51d5b64e44c6b50cbe200c946 (patch) | |
tree | 7dd9605ba1f24a32b32dbb3aadab378addc1a21a /youtube/local_playlist.py | |
parent | 70d2cff81760a5bfd2d8f54349cd96d50df5f320 (diff) | |
download | yt-local-85572c94de77f4a51d5b64e44c6b50cbe200c946.tar.lz yt-local-85572c94de77f4a51d5b64e44c6b50cbe200c946.tar.xz yt-local-85572c94de77f4a51d5b64e44c6b50cbe200c946.zip |
Layout: refactor item system to be more maintainable, add vertical item type
Diffstat (limited to 'youtube/local_playlist.py')
-rw-r--r-- | youtube/local_playlist.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/youtube/local_playlist.py b/youtube/local_playlist.py index bb05d1a..4b92315 100644 --- a/youtube/local_playlist.py +++ b/youtube/local_playlist.py @@ -82,7 +82,6 @@ def get_local_playlist_videos(name, offset=0, amount=50): else: info['thumbnail'] = util.get_thumbnail_url(info['id']) missing_thumbnails.append(info['id']) - info['item_size'] = 'small' info['type'] = 'video' yt_data_extract.add_extra_html_info(info) videos.append(info) |