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
1 changed files with 1 additions and 1 deletions

View File

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