Skip to content

Commit aa99f7e

Browse files
committed
Remove error output
1 parent e6be5e7 commit aa99f7e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

manager/manager/manager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,7 @@ def on_run_application(self, event):
690690
],
691691
stdin=open("/dev/pts/" + console_fd, "r"),
692692
stdout=open("/dev/pts/" + console_fd, "w"),
693-
stderr=open("/dev/pts/" + console_fd, "w"),
693+
stderr=sys.stdout,
694694
bufsize=1024,
695695
universal_newlines=True,
696696
shell=True,
@@ -718,7 +718,7 @@ def on_run_application(self, event):
718718
["python3", entrypoint],
719719
stdin=open("/dev/pts/" + console_fd, "r"),
720720
stdout=open("/dev/pts/" + console_fd, "w"),
721-
stderr=open("/dev/pts/" + console_fd, "w"),
721+
stderr=sys.stdout,
722722
bufsize=1024,
723723
universal_newlines=True,
724724
)

0 commit comments

Comments
 (0)