From e14fe3556aaa17c46ccf15fb424261e6e56ddc2f Mon Sep 17 00:00:00 2001 From: "Gabriele N. Tornetta" Date: Tue, 8 Nov 2022 13:46:43 +0000 Subject: [PATCH] fix: remove save emoji (#25) As reported in #20, the emoji displayed when data is saved to file causes issues. As this is not a vital feature, we are removing it for the sake of better compatibility on MacOS. Fixes #20. --- austin_tui/controller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/austin_tui/controller.py b/austin_tui/controller.py index 6359b05..bef4385 100644 --- a/austin_tui/controller.py +++ b/austin_tui/controller.py @@ -260,7 +260,7 @@ def _dump_stats() -> None: fout.write(line + "\n") self.view.notification.set_text( self.view.markup( - f"Stats saved as {escape(filename)} 📝 " + f"Stats saved as {escape(filename)} " ) ) except IOError as e: