diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-09-17 21:53:32 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-09-17 21:53:32 +0100 |
commit | 44f48531452bc55114161df8f33a0cd49c7d438c (patch) | |
tree | 30c2898bd166d05aecf6395fe4c704fd5edee8a5 /src/backend/uninstallAllForce.py | |
parent | 521cd9b1c25d88162f377bb05c8aadb70df028d7 (diff) |
fix Popen.communicate calls
Diffstat (limited to 'src/backend/uninstallAllForce.py')
-rw-r--r-- | src/backend/uninstallAllForce.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/uninstallAllForce.py b/src/backend/uninstallAllForce.py index 8a952c6..d639fe8 100644 --- a/src/backend/uninstallAllForce.py +++ b/src/backend/uninstallAllForce.py @@ -8,7 +8,7 @@ import sisyphus.syncDatabase def start(pkgname): if sisyphus.checkEnvironment.root(): portageExec = subprocess.Popen(['emerge', '--quiet', '--unmerge', '--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") |