summaryrefslogtreecommitdiffstats
path: root/src/file.rs
diff options
context:
space:
mode:
authorBen S <ogham@users.noreply.github.com>2015-02-22 23:48:30 +0000
committerBen S <ogham@users.noreply.github.com>2015-02-22 23:48:30 +0000
commitbd8e73b212de3efb097c7d72f86265fa11460365 (patch)
treed0708791d86d5c94d719ef66242089e1235d614f /src/file.rs
parent53387122de3851df5e1e38ad2fedc01404568ada (diff)
parentbeaf8789ce1c9b1cfaeb38f27b728fc96b88b80b (diff)
Merge pull request #17 from nwin/fix-column-alignment
Fix the column alignment
Diffstat (limited to 'src/file.rs')
-rw-r--r--src/file.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/file.rs b/src/file.rs
index 32a6e53..9796e22 100644
--- a/src/file.rs
+++ b/src/file.rs
@@ -319,7 +319,7 @@ impl<'a> File<'a> {
DateFormat::parse("{2>:D} {:M} {2>:h}:{02>:m}").unwrap()
}
else {
- DateFormat::parse("{2>:D} {:M} {4>:Y}").unwrap()
+ DateFormat::parse("{2>:D} {:M} {5>:Y}").unwrap()
};
Cell::paint(Blue.normal(), format.format(date, locale).as_slice())