From 44f48531452bc55114161df8f33a0cd49c7d438c Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 17 Sep 2022 21:53:32 +0100 Subject: fix Popen.communicate calls --- src/backend/getBinhost.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/backend/getBinhost.py') diff --git a/src/backend/getBinhost.py b/src/backend/getBinhost.py index faff197..849dba8 100644 --- a/src/backend/getBinhost.py +++ b/src/backend/getBinhost.py @@ -11,5 +11,5 @@ def start(): if "PORTAGE_BINHOST" in portageOutput.rstrip(): isBinhost = str(portageOutput.rstrip().split("=")[1].strip('\"')) - stdout, stderr = portageExec.communicate() + portageExec.communicate() return isBinhost -- cgit v1.2.3