Skip to content

Commit 28a455d

Browse files
committed
Fix oversight in chrono impl
1 parent 8c09d18 commit 28a455d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fmt/chrono/extern_impl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ impl fmt::Display for Timestamp {
119119
panic!("Sorry, currently with the new human timestamp formats, we only support second precision.");
120120
}
121121

122-
self.time.format("%v %p").fmt(f)
122+
self.time.format("%v %r").fmt(f)
123123
}
124124
TimestampFormat::Human24Hour => {
125125
if self.precision != TimestampPrecision::Seconds {

0 commit comments

Comments
 (0)