replace missing space in listing formatting
This commit is contained in:
parent
876d5fa87b
commit
6796422224
@ -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} "),
|
||||||
|
Loading…
Reference in New Issue
Block a user