From f63eb33b4c7186f456b46f68b0e9475ef0167cdd Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 17 Sep 2022 23:44:50 +0100 Subject: only use pipes when absolutely needed --- src/backend/uninstallAll.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/backend/uninstallAll.py') diff --git a/src/backend/uninstallAll.py b/src/backend/uninstallAll.py index b11af3e..ca25628 100644 --- a/src/backend/uninstallAll.py +++ b/src/backend/uninstallAll.py @@ -9,7 +9,7 @@ import sisyphus.syncDatabase def start(pkgname): if sisyphus.checkEnvironment.root(): - portageExec = subprocess.Popen(['emerge', '--quiet', '--depclean', '--ask'] + list(pkgname), stdout=subprocess.PIPE, stderr=subprocess.PIPE) + portageExec = subprocess.Popen(['emerge', '--quiet', '--depclean', '--ask'] + list(pkgname)) portageExec.wait() sisyphus.syncDatabase.syncLocal() else: -- cgit v1.2.3