aboutsummaryrefslogtreecommitdiff
path: root/src/output/formats.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/output/formats.rs')
-rw-r--r--src/output/formats.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/output/formats.rs b/src/output/formats.rs
index 599e804..203502a 100644
--- a/src/output/formats.rs
+++ b/src/output/formats.rs
@@ -36,13 +36,14 @@ impl Format for HumanReadable {
};
writeln!(
result,
- "{}: {} - {}: {} {}",
+ "{}: {} - {}: {}{} {}",
"Date".green(),
item.time
.with_timezone(&Local)
.format("%Y-%m-%d %H:%M:%S %a"),
"Boss".green(),
item.boss_name,
+ if item.is_cm { " CM" } else { "" },
outcome,
)
.unwrap();