diff --git a/slpkg/check_updates.py b/slpkg/check_updates.py index b42f8350..8b4755d0 100644 --- a/slpkg/check_updates.py +++ b/slpkg/check_updates.py @@ -82,7 +82,8 @@ class CheckUpdates(Configs): print() for repo, comp in compare.items(): if comp: - print(f"\n{self.bgreen}There are new updates available for the '{repo}' repository!{self.endc}") + print(f"\n{self.green}There are new updates available for the{self.endc} " + f"'{self.bgreen}{repo}{self.endc}'{self.green} repository!{self.endc}") if True not in compare.values(): print(f'\n{self.endc}{self.yellow}No updated packages since the last check.{self.endc}') diff --git a/slpkg/update_repository.py b/slpkg/update_repository.py index 43c790fd..0f72a988 100644 --- a/slpkg/update_repository.py +++ b/slpkg/update_repository.py @@ -151,7 +151,8 @@ class UpdateRepository(Configs): for repo, comp in compare.items(): if comp: - print(f"\n\n{self.bgreen}There are new updates available for '{repo}' repository!{self.endc}") + print(f"\n\n{self.green}There are new updates available for the{self.endc} " + f"'{self.bgreen}{repo}{self.endc}'{self.green} repository!{self.endc}") is_update: int = 1 if True not in compare.values():