mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-28 19:58:18 +01:00
Fixed: check remove dependencies #26
This commit is contained in:
parent
64e9fced1c
commit
2b6d284c72
1 changed files with 1 additions and 1 deletions
|
@ -224,7 +224,7 @@ class PackageManager(object):
|
|||
for pkg in find_package("", self.dep_path):
|
||||
deps = Utils().read_file(self.dep_path + pkg)
|
||||
for rmv in removes:
|
||||
if rmv in deps:
|
||||
if rmv in deps.split():
|
||||
view = True
|
||||
package.append(pkg)
|
||||
dependency.append(rmv)
|
||||
|
|
Loading…
Add table
Reference in a new issue