From ff11a4c8b4ea20ec07c4d2cd638ba52bd17f2d0a Mon Sep 17 00:00:00 2001 From: Ezra Shaw Date: Sun, 25 Dec 2022 08:01:58 +1300 Subject: [PATCH] Fix oversight in `chrono` impl --- src/fmt/chrono/extern_impl.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fmt/chrono/extern_impl.rs b/src/fmt/chrono/extern_impl.rs index 6ee8f175..fa9d4273 100644 --- a/src/fmt/chrono/extern_impl.rs +++ b/src/fmt/chrono/extern_impl.rs @@ -119,7 +119,7 @@ impl fmt::Display for Timestamp { panic!("Sorry, currently with the new human timestamp formats, we only support second precision."); } - self.time.format("%v %p").fmt(f) + self.time.format("%v %l %p").fmt(f) } TimestampFormat::Human24Hour => { if self.precision != TimestampPrecision::Seconds {