diff options
| -rw-r--r-- | src/output/formats.rs | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/src/output/formats.rs b/src/output/formats.rs index 51de033..560963b 100644 --- a/src/output/formats.rs +++ b/src/output/formats.rs @@ -36,7 +36,7 @@ impl Format for HumanReadable {          };          writeln!(              result, -            "{}: {} - {}: {}{} {}", +            "{}: {} - {}: {}{} {} after {}",              "Date".green(),              item.time                  .with_timezone(&Local) @@ -47,6 +47,7 @@ impl Format for HumanReadable {                  .unwrap_or_else(|| "unknown".into()),              if item.is_cm { " CM" } else { "" },              outcome, +            humantime::Duration::from(item.duration.to_std().unwrap()),          )          .unwrap();          for player in &item.players { | 
