From 160d080e7c9d955ff92340026d232562587433b5 Mon Sep 17 00:00:00 2001 From: xodivorce Date: Sat, 12 Oct 2024 14:57:23 +0530 Subject: [PATCH 1/2] f-string error --- pytubepp/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pytubepp/main.py b/pytubepp/main.py index 9b4b318..d0755c7 100644 --- a/pytubepp/main.py +++ b/pytubepp/main.py @@ -435,7 +435,7 @@ def show_video_info(link): print('Sorry, No video streams found....!!!') sys.exit() - print(f'\nTitle: {video.title}\nAuthor: {author}\nPublished On: {video.publish_date.strftime('%d/%m/%Y')}\nDuration: {video.length}\nViews: {views}\n') + print(f'\nTitle: {video.title}\nAuthor: {author}\nPublished On: {video.publish_date.strftime("%d/%m/%Y")}\nDuration: {video.length}\nViews: {views}\n') print(tabulate(table, headers=['Stream', 'Alias (for -s flag)', 'Format', 'Size', 'FrameRate', 'V-Codec', 'A-Codec', 'V-BitRate', 'A-BitRate'])) print('\n') else: From a4e3cc54f3df585ff32f14c100b5b9c31ec986aa Mon Sep 17 00:00:00 2001 From: xodivorce Date: Sat, 12 Oct 2024 15:07:42 +0530 Subject: [PATCH 2/2] bumped up to 1.1.0 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4681fea..66ab333 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ with open('README.md', 'r', encoding='utf8') as file: setup( name='pytubepp', - version='1.0.9', + version='1.1.0', description='A Simple CLI Tool to Download Your Favorite YouTube Videos Effortlessly!', long_description=readme, long_description_content_type='text/markdown',