Skip to content

Commit

Permalink
fix: add a space in the progress bar template
Browse files Browse the repository at this point in the history
  • Loading branch information
overclockworked64 authored and sharkdp committed Oct 23, 2023
1 parent 69ee173 commit 798ea2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/output/progress_bar.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pub fn get_progress_bar(length: u64, msg: &str, option: OutputStyleOption) -> Pr
OutputStyleOption::Basic | OutputStyleOption::Color => ProgressStyle::default_bar(),
_ => ProgressStyle::default_spinner()
.tick_chars(TICK_SETTINGS.0)
.template(" {spinner} {msg:<30} {wide_bar} ETA {eta_precise}")
.template(" {spinner} {msg:<30} {wide_bar} ETA {eta_precise} ")
.expect("no template error"),
};

Expand Down

0 comments on commit 798ea2d

Please sign in to comment.