From 44f48531452bc55114161df8f33a0cd49c7d438c Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 17 Sep 2022 21:53:32 +0100 Subject: fix Popen.communicate calls --- src/backend/uninstallAll.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/backend/uninstallAll.py') diff --git a/src/backend/uninstallAll.py b/src/backend/uninstallAll.py index ca985b3..bb54851 100644 --- a/src/backend/uninstallAll.py +++ b/src/backend/uninstallAll.py @@ -11,7 +11,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) - stdout, stderr = portageExec.communicate() + portageExec.communicate() sisyphus.syncDatabase.syncLocal() else: sys.exit("\nYou need root permissions to do this, exiting!\n") @@ -24,5 +24,5 @@ def startqt(pkgname): for portageOutput in io.TextIOWrapper(portageExec.stdout, encoding="utf-8"): print(portageOutput.rstrip()) - stdout, stderr = portageExec.communicate() + portageExec.communicate() sisyphus.syncDatabase.syncLocal() -- cgit v1.2.3