diff options
author | zrose584 <57181548+zrose584@users.noreply.github.com> | 2020-10-09 18:25:17 +0200 |
---|---|---|
committer | zrose584 <57181548+zrose584@users.noreply.github.com> | 2020-10-09 18:25:17 +0200 |
commit | 4f46e14ad0154a9e8749c9e0e39a4a799d549dd4 (patch) | |
tree | 8366476b77a0f9b5910466e10a2b671c5a0609d1 /youtube/playlist.py | |
parent | f8d9be2d5a947a2adde12d187a52b18b7218c541 (diff) | |
download | yt-local-4f46e14ad0154a9e8749c9e0e39a4a799d549dd4.tar.lz yt-local-4f46e14ad0154a9e8749c9e0e39a4a799d549dd4.tar.xz yt-local-4f46e14ad0154a9e8749c9e0e39a4a799d549dd4.zip |
fix style
Diffstat (limited to 'youtube/playlist.py')
-rw-r--r-- | youtube/playlist.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube/playlist.py b/youtube/playlist.py index 0a415c1..a5ec0db 100644 --- a/youtube/playlist.py +++ b/youtube/playlist.py @@ -104,7 +104,7 @@ def get_playlist_page(): util.prefix_urls(item) util.add_extra_html_info(item) if 'id' in item: - item['thumbnail'] = f'{settings.img_prefix}https://i.ytimg.com/vi/' + item['id'] + '/default.jpg' + item['thumbnail'] = settings.img_prefix + 'https://i.ytimg.com/vi/' + item['id'] + '/default.jpg' item['url'] += '&list=' + playlist_id if item['index']: |