diff options
Diffstat (limited to 'src/backend/uninstall.py')
-rw-r--r-- | src/backend/uninstall.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/uninstall.py b/src/backend/uninstall.py index 4c54d7b..23cd2c5 100644 --- a/src/backend/uninstall.py +++ b/src/backend/uninstall.py @@ -35,8 +35,8 @@ def fstart(pkgname): def xstart(pkgname): - p_exe = subprocess.Popen( - ['emerge', '--depclean'] + pkgname, stdout=subprocess.PIPE, stderr=subprocess.PIPE) + p_exe = subprocess.Popen(['emerge', '--depclean'] + pkgname, + stdout=subprocess.PIPE, stderr=subprocess.PIPE) # kill portage if the program dies or it's terminated by the user atexit.register(sisyphus.killemerge.start, p_exe) |