summaryrefslogtreecommitdiff
path: root/src/backend/uninstall.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/uninstall.py')
-rw-r--r--src/backend/uninstall.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/uninstall.py b/src/backend/uninstall.py
index 8dc9e34..1ceb0ba 100644
--- a/src/backend/uninstall.py
+++ b/src/backend/uninstall.py
@@ -4,8 +4,8 @@ import subprocess
import sisyphus.check
import sisyphus.sync
-def start(pkgList):
+def start(pkgname):
sisyphus.check.root()
- portageExec = subprocess.Popen(['emerge', '--quiet', '--depclean', '--ask'] + pkgList)
+ portageExec = subprocess.Popen(['emerge', '--quiet', '--depclean', '--ask'] + list(pkgname))
portageExec.wait()
sisyphus.database.syncLocal()