diff --git a/slpkg/check_updates.py b/slpkg/check_updates.py index 5a8fd33a..06e385cd 100644 --- a/slpkg/check_updates.py +++ b/slpkg/check_updates.py @@ -79,16 +79,17 @@ class CheckUpdates(Configs): def view_message(self) -> None: compare = self.check() + print() for repo, comp in compare.items(): if comp: - print(f"\n\n{self.bgreen}There are new updates available for the '{repo}' repository!{self.endc}") + print(f"\n{self.bgreen}There are new updates available for the '{repo}' repository!{self.endc}") if True not in compare.values(): - print(f'\n\n{self.endc}{self.yellow}No updated packages since the last check.{self.endc}') + print(f'{self.endc}{self.yellow}No updated packages since the last check.{self.endc}\n') def updates(self) -> None: """ Starting multiprocessing download process. """ - message: str = f'Checking for news in the {self.repo_chg_txt} file...' + message: str = f'Checking for news, please wait...' # Starting multiprocessing p1 = Process(target=self.view_message) diff --git a/slpkg/update_repository.py b/slpkg/update_repository.py index 1bdce859..3a7b49a2 100644 --- a/slpkg/update_repository.py +++ b/slpkg/update_repository.py @@ -161,7 +161,7 @@ class UpdateRepository(Configs): def repository(self) -> None: """ Starting multiprocessing download process. """ queue = Queue() - message = f'Checking for news in the Changelog.txt file...' + message = f'Checking for news, please wait...' # Starting multiprocessing p1 = Process(target=self.check, args=(queue,))