diff options
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: |