summaryrefslogtreecommitdiff
path: root/src/backend/binhost.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/binhost.py')
-rw-r--r--src/backend/binhost.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/binhost.py b/src/backend/binhost.py
index 91a6e53..3de4fca 100644
--- a/src/backend/binhost.py
+++ b/src/backend/binhost.py
@@ -5,11 +5,11 @@ import subprocess
def start():
isBinhost = []
- portageExec = subprocess.Popen(['emerge', '--info', '--verbose'], stdout=subprocess.PIPE)
+ portageExec = subprocess.Popen(['emerge', '--info', '--verbose'], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
+ stdout, stderr = portageExec.communicate()
for portageOutput in io.TextIOWrapper(portageExec.stdout, encoding="utf-8"):
if "PORTAGE_BINHOST" in portageOutput.rstrip():
isBinhost = str(portageOutput.rstrip().split("=")[1].strip('\"'))
- portageExec.wait()
return isBinhost