summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-10-28 00:37:52 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-10-28 00:37:52 +0100
commit001a240b21ec60ab1e30352095fb94e06b3ccf58 (patch)
treeb1e973cdc773408c4eeb704ff359d6aa28d2aca6
parentd8db68d9c7773e72da45ed8b45ea6866dea32b09 (diff)
sisyphus-gui : print some more information on stdout, when executed from CLIv1.1810
-rw-r--r--src/frontend/gui/sisyphus-gui.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/frontend/gui/sisyphus-gui.py b/src/frontend/gui/sisyphus-gui.py
index 02d531b..dd9eb15 100644
--- a/src/frontend/gui/sisyphus-gui.py
+++ b/src/frontend/gui/sisyphus-gui.py
@@ -371,6 +371,7 @@ class MainWorker(QtCore.QObject):
for index, url in enumerate([binhostURL + package + '.tbz2' for package in pkgDeps]):
self.strReady.emit(">>> Fetching" + " " + url)
+ print(">>> Fetching" + " " + url)
wget.download(url)
print("\n")
@@ -398,6 +399,7 @@ class MainWorker(QtCore.QObject):
for portageOutput in io.TextIOWrapper(portageExec.stdout, encoding="utf-8"):
self.strReady.emit(portageOutput.rstrip())
+ print(portageOutput.rstrip())
portageExec.wait()
syncLocalDatabase()
@@ -428,6 +430,7 @@ class MainWorker(QtCore.QObject):
for index, url in enumerate([binhostURL + package + '.tbz2' for package in worldDeps]):
self.strReady.emit(">>> Fetching" + " " + url)
+ print(">>> Fetching" + " " + url)
wget.download(url)
print("\n")
@@ -455,6 +458,7 @@ class MainWorker(QtCore.QObject):
for portageOutput in io.TextIOWrapper(portageExec.stdout, encoding="utf-8"):
self.strReady.emit(portageOutput.rstrip())
+ print(portageOutput.rstrip())
portageExec.wait()
syncLocalDatabase()