Skip to content

Commit e7beafc

Browse files
committed
fix indenting by removing formatting on the config str
1 parent cc8d008 commit e7beafc

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/plumbing/progress.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ impl Display for Usage {
4646
impl Usage {
4747
pub fn icon(&self) -> &'static str {
4848
match self {
49-
Puzzled => "?",
49+
Puzzled => "",
5050
NotApplicable { .. } => "❌",
5151
Planned { .. } => "🕒",
5252
NotPlanned { .. } => "🤔",
@@ -546,11 +546,10 @@ pub fn show_progress() -> anyhow::Result<()> {
546546
"{icon} {config: <50}: {usage}",
547547
icon = usage.icon(),
548548
config = if let Some(config) = config.strip_prefix("gitoxide.") {
549-
format!("{gitoxide}{config}", gitoxide = "gitoxide.".green())
549+
format!("{gitoxide}{config}", gitoxide = "gitoxide.")
550550
} else {
551551
config.to_string()
552552
}
553-
.bold(),
554553
);
555554
}
556555

0 commit comments

Comments
 (0)