From 3603b02102c6c139205b8fdb515af08297358625 Mon Sep 17 00:00:00 2001 From: Hetari Date: Wed, 21 Aug 2024 12:03:47 +0300 Subject: [PATCH] fix some issues --- pyutube/handlers/PlaylistHandler.py | 3 +-- pyutube/utils.py | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/pyutube/handlers/PlaylistHandler.py b/pyutube/handlers/PlaylistHandler.py index 926bcb7..2701ecd 100644 --- a/pyutube/handlers/PlaylistHandler.py +++ b/pyutube/handlers/PlaylistHandler.py @@ -82,8 +82,7 @@ def check_for_downloaded_videos(self, title, total): break if not self.playlist_videos: - console.print(f"All playlist are already downloaded in this directory, see '{ - title}' folder", style="info") + console.print(f"All playlist are already downloaded in this directory, see '{title}' folder", style="info") sys.exit() self.show_playlist_info(title, total) diff --git a/pyutube/utils.py b/pyutube/utils.py index e877cf9..40ca4c5 100644 --- a/pyutube/utils.py +++ b/pyutube/utils.py @@ -14,7 +14,7 @@ from termcolor import colored -__version__ = "1.3.1" +__version__ = "1.3.21" __app__ = "pyutube" ABORTED_PREFIX = "Aborted" CANCEL_PREFIX = "Cancel"