replace missing space in listing formatting

This commit is contained in:
Nathan Fisher 2024-01-15 00:55:18 -05:00
parent 876d5fa87b
commit 6796422224

View File

@ -321,7 +321,7 @@ impl Listing {
); );
match self.kind { match self.kind {
Kind::Normal(s) => print!("{s:>10} "), Kind::Normal(s) => print!("{s:>10} "),
_ => print!("{:>10}", "-"), _ => print!("{:>10} ", "-"),
} }
match NaiveDateTime::from_timestamp_opt(self.mtime as i64, 0) { match NaiveDateTime::from_timestamp_opt(self.mtime as i64, 0) {
Some(dt) => print!("{dt} "), Some(dt) => print!("{dt} "),