summaryrefslogtreecommitdiff
path: root/src/backend/installSrc.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/installSrc.py')
-rw-r--r--src/backend/installSrc.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/installSrc.py b/src/backend/installSrc.py
index 9fc7eec..466ee0a 100644
--- a/src/backend/installSrc.py
+++ b/src/backend/installSrc.py
@@ -47,7 +47,7 @@ def start(pkgname):
if not "Calculating dependencies" in portageOutput.rstrip():
print(portageOutput.rstrip())
- stdout, stderr = portageExec.communicate()
+ portageExec.communicate()
sisyphus.syncDatabase.syncLocal()
else:
sys.exit("\n" + "Ok; Quitting." + "\n")
@@ -80,7 +80,7 @@ def start(pkgname):
if not "Calculating dependencies" in portageOutput.rstrip():
print(portageOutput.rstrip())
- stdout, stderr = portageExec.communicate()
+ portageExec.communicate()
sisyphus.syncDatabase.syncLocal()
else:
sys.exit("\n" + "Ok; Quitting." + "\n")
@@ -94,7 +94,7 @@ def start(pkgname):
if not "Calculating dependencies" in portageOutput.rstrip():
print(portageOutput.rstrip())
- stdout, stderr = portageExec.communicate()
+ portageExec.communicate()
sisyphus.syncDatabase.syncLocal()
else:
sys.exit("\n" + "Ok; Quitting." + "\n")
@@ -107,7 +107,7 @@ def start(pkgname):
if not "binary" in portageOutput.rstrip():
print(portageOutput.rstrip())
- stdout, stderr = portageExec.communicate()
+ portageExec.communicate()
sys.exit("\n" + "Cannot proceed; Apply the above changes to your portage configuration files and try again; Quitting." + "\n")
else:
sys.exit("\nYou need root permissions to do this, exiting!\n")