diff --git a/slpkg/views/views.py b/slpkg/views/views.py index cbdcab44..ae61533f 100644 --- a/slpkg/views/views.py +++ b/slpkg/views/views.py @@ -61,9 +61,8 @@ class ViewMessage(Configs): if mode == 'upgrade': color: str = self.violet - # If the package is installed and not upgradeable change the color to gray. - if (package in self.all_installed and mode == 'install' and - not self.utils.is_package_upgradeable(package)): + # If the package is installed and change the color to gray. + if package in self.all_installed and mode == 'install': color = self.grey self.ascii.draw_view_package(package, version, color, repo)