Skip to content

Commit e14fe35

Browse files
authored
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.
1 parent 98d3864 commit e14fe35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

austin_tui/controller.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ def _dump_stats() -> None:
260260
fout.write(line + "\n")
261261
self.view.notification.set_text(
262262
self.view.markup(
263-
f"Stats saved as <running>{escape(filename)}</running> 📝 "
263+
f"Stats saved as <running>{escape(filename)}</running> "
264264
)
265265
)
266266
except IOError as e:

0 commit comments

Comments
 (0)