summaryrefslogtreecommitdiff
path: root/src/backend/search.py
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-06-09 14:36:02 +0100
committerV3n3RiX <venerix@redcorelinux.org>2020-06-09 14:36:02 +0100
commitbab41785dd6af2ecc88078dd22550b483e7fc776 (patch)
treeb920e0064d28fd0042a7f79812b2a9c8cc592b25 /src/backend/search.py
parent27e0407ab61bee10c924182b39f4c3a0b622d420 (diff)
make search work
Diffstat (limited to 'src/backend/search.py')
-rw-r--r--src/backend/search.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/search.py b/src/backend/search.py
index 7e5ab2f..c9b5862 100644
--- a/src/backend/search.py
+++ b/src/backend/search.py
@@ -2,5 +2,5 @@
import subprocess
-def start(pkgList):
- subprocess.call(['emerge', '--search', '--getbinpkg'] + pkgList)
+def start(pkgname):
+ subprocess.call(['emerge', '--search', '--getbinpkg'] + list(pkgname))