diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2017-07-10 18:03:43 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2017-07-10 18:03:43 +0100 |
commit | 7603d76b136c8e48e8f921b5e90d92ae0e47e908 (patch) | |
tree | e74f3452bb3213ae50c68a70089bd71338836350 /src | |
parent | 38c8f2f4bddc9eadeb69a61cc6ac3d483831228c (diff) |
backend: improvements && make less noise; gui frontend: fix remove-orphans call
Diffstat (limited to 'src')
-rwxr-xr-x | src/frontend/gui/sisyphus-gui.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/gui/sisyphus-gui.py b/src/frontend/gui/sisyphus-gui.py index 7fa14f7..35df849 100755 --- a/src/frontend/gui/sisyphus-gui.py +++ b/src/frontend/gui/sisyphus-gui.py @@ -34,7 +34,7 @@ class Sisyphus(QtWidgets.QMainWindow): subprocess.Popen(['xterm', '-e', 'sisyphus', 'auto-uninstall'] + pkgname.split()) def remove_orphans(self): - subprocess.Popen(['xterm', '-e', 'sisyphus', 'remove-orphans']) + subprocess.Popen(['xterm', '-e', 'sisyphus', 'auto-remove-orphans']) def upgrade_system(self): subprocess.Popen(['xterm', '-e', 'sisyphus', 'auto-upgrade']) |