Skip to content

Commit

Permalink
Avoid hiding error during setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Quentin Peter committed Nov 11, 2023
1 parent 8b94903 commit 5912e24
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions spyder/plugins/ipythonconsole/widgets/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -381,6 +381,7 @@ def print_stderr(self, stderr):
return

self.shellwidget._append_plain_text(stderr, before_prompt=True)
self._hide_loading_page()

@Slot(str)
def print_stdout(self, stdout):
Expand All @@ -389,6 +390,7 @@ def print_stdout(self, stdout):
return

self.shellwidget._append_plain_text(stdout, before_prompt=True)
self._hide_loading_page()

def connect_shellwidget_signals(self):
"""Configure shellwidget after kernel is connected."""
Expand Down

0 comments on commit 5912e24

Please sign in to comment.