From a7548d089812ac61602a31a699d14777d312ac6d Mon Sep 17 00:00:00 2001 From: Yuta Yamaguchi Date: Thu, 19 Jan 2023 02:25:49 +0900 Subject: [PATCH] fix(console): fix `ViewOptions` default lang' (#394) Fixes #393 --- tokio-console/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tokio-console/src/config.rs b/tokio-console/src/config.rs index 675953b9d..e2fcdf122 100644 --- a/tokio-console/src/config.rs +++ b/tokio-console/src/config.rs @@ -498,7 +498,7 @@ impl Default for ViewOptions { fn default() -> Self { Self { no_colors: false, - lang: Some("en_us.UTF8".to_string()), + lang: Some("en_us.UTF-8".to_string()), ascii_only: Some(false), truecolor: Some(true), palette: Some(Palette::All),