diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-09-17 23:24:05 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-09-17 23:24:05 +0100 |
commit | 00c597fbd8d309bd74f91aae27af84a1e93a4a0d (patch) | |
tree | eda95fa33297244c09289e0fceccca6b8bc9d32d /src/backend/uninstallAllForce.py | |
parent | 44f48531452bc55114161df8f33a0cd49c7d438c (diff) |
get rid of io.TextIOWrapper
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 d639fe8..1c37ace 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) - portageExec.communicate() + portageExec.wait() sisyphus.syncDatabase.syncLocal() else: sys.exit("\nYou need root permissions to do this, exiting!\n") |