Skip to content
This repository was archived by the owner on Sep 17, 2024. It is now read-only.

Commit 698ffe0

Browse files
author
axtloss
committed
Fix logging
this fix needed only one extra arg 💀️
1 parent 28bf9f7 commit 698ffe0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/functions/install_screen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def __init__(self, window, main_carousel, next_page, application, **kwargs):
3939
def install(self):
4040
prefs = self.window.summary_screen.installprefs.generate_json()
4141
with open(os.getenv("HOME")+"/jade-gui.log", "wb") as f:
42-
process=subprocess.Popen(["bash", "-c", "bash -- /usr/share/jade-gui/jade_gui/scripts/install.sh"], stdout=subprocess.PIPE)
42+
process=subprocess.Popen(["bash", "-c", "bash -- /usr/share/jade-gui/jade_gui/scripts/install.sh"], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
4343
for c in iter(lambda: process.stdout.read(1), b""):
4444
log=c
4545
try:

0 commit comments

Comments
 (0)