diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-11-10 23:53:58 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-11-10 23:53:58 +0000 |
commit | 05f1fa8cc99c5d8a2199ef4fa8ae272cc2aac078 (patch) | |
tree | f10e3ba094b5218482edae97764d464aa246062d /src/frontend/gui/sisyphus-gui.py | |
parent | e17756232fbea34877b96493eea8e0b0d2355fa6 (diff) |
make more room for hybrid and source mode
Diffstat (limited to 'src/frontend/gui/sisyphus-gui.py')
-rw-r--r-- | src/frontend/gui/sisyphus-gui.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frontend/gui/sisyphus-gui.py b/src/frontend/gui/sisyphus-gui.py index 247594b..29f3ee6 100644 --- a/src/frontend/gui/sisyphus-gui.py +++ b/src/frontend/gui/sisyphus-gui.py @@ -366,7 +366,7 @@ class MainWorker(QtCore.QObject): pkgList = Sisyphus.pkgList binhostURL = getBinhostURL() - binaryDeps = getPkgDeps(pkgList) + binaryDeps = getPkgBinaryDeps(pkgList) binaryPkgs = [] os.chdir(portageCache) @@ -427,7 +427,7 @@ class MainWorker(QtCore.QObject): self.started.emit() binhostURL = getBinhostURL() - binaryDeps = getWorldDeps() + binaryDeps = getWorldBinaryDeps() binaryPkgs = [] os.chdir(portageCache) |