diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-09-17 23:44:50 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-09-17 23:44:50 +0100 |
commit | f63eb33b4c7186f456b46f68b0e9475ef0167cdd (patch) | |
tree | 0be98104eff93478c5dde16018f3fc1c39693d8c /src/backend/uninstallAll.py | |
parent | 00c597fbd8d309bd74f91aae27af84a1e93a4a0d (diff) |
only use pipes when absolutely needed
Diffstat (limited to 'src/backend/uninstallAll.py')
-rw-r--r-- | src/backend/uninstallAll.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |