Skip to content

Commit 0292332

Browse files
committed
fix(app): disable markup for shell
1 parent 473e5f3 commit 0292332

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/rovr/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -498,11 +498,11 @@ def shell_thread(self, proc: Popen, title: str = "") -> None:
498498
msg = str(stderr)
499499
else:
500500
msg = f"Process completed with code {proc.returncode}"
501-
self.call_from_thread(
502-
self.notify,
501+
self.notify(
503502
msg.strip(),
504503
title=title,
505504
severity="information" if proc.returncode == 0 else "error",
505+
markup=False,
506506
)
507507

508508
def on_app_blur(self, event: events.AppBlur) -> None:

0 commit comments

Comments
 (0)