diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-11-10 23:07:48 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-11-10 23:07:48 +0000 |
commit | e17756232fbea34877b96493eea8e0b0d2355fa6 (patch) | |
tree | f8b1e5eec34abeb3ad360d168f1e9e7f9beb819b /src/frontend | |
parent | 82c5a9cb0125e19698002ad960a9791c7583a86f (diff) |
sisyphus-gui : print some more information when executed from cli
Diffstat (limited to 'src/frontend')
-rw-r--r-- | src/frontend/gui/sisyphus-gui.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/frontend/gui/sisyphus-gui.py b/src/frontend/gui/sisyphus-gui.py index dcb9c77..247594b 100644 --- a/src/frontend/gui/sisyphus-gui.py +++ b/src/frontend/gui/sisyphus-gui.py @@ -416,6 +416,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() @@ -475,6 +476,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() |