Skip to content

Commit a7548d0

Browse files
authored
fix(console): fix ViewOptions default lang' (#394)
Fixes #393
1 parent 300bd93 commit a7548d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tokio-console/src/config.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ impl Default for ViewOptions {
498498
fn default() -> Self {
499499
Self {
500500
no_colors: false,
501-
lang: Some("en_us.UTF8".to_string()),
501+
lang: Some("en_us.UTF-8".to_string()),
502502
ascii_only: Some(false),
503503
truecolor: Some(true),
504504
palette: Some(Palette::All),

0 commit comments

Comments
 (0)