mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-02-05 08:46:20 +01:00
Fixed for upgrade
This commit is contained in:
parent
dd819af5aa
commit
7ccf56a942
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ class Upgrade(Configs):
|
|||
""" Returns the upgradable packages. """
|
||||
|
||||
# Returns the matched packages between two lists.
|
||||
packages: list = list(set(self.utils.installed_package_names) & set(list(self.data.keys())))
|
||||
packages: list = list(set(self.utils.installed_packages.keys()) & set(list(self.data.keys())))
|
||||
|
||||
for pkg in packages:
|
||||
if self.is_package_upgradeable(pkg):
|
||||
|
|
Loading…
Add table
Reference in a new issue