aboutsummaryrefslogtreecommitdiffstats
path: root/src/command/client/history.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/command/client/history.rs')
-rw-r--r--src/command/client/history.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command/client/history.rs b/src/command/client/history.rs
index 6eaa6407..b2f68f93 100644
--- a/src/command/client/history.rs
+++ b/src/command/client/history.rs
@@ -55,7 +55,7 @@ pub enum Cmd {
pub fn print_list(h: &[History], human: bool, cmd_only: bool) {
let mut writer = TabWriter::new(std::io::stdout()).padding(2);
- let lines = h.iter().map(|h| {
+ let lines = h.iter().rev().map(|h| {
if human {
let duration = humantime::format_duration(Duration::from_nanos(std::cmp::max(
h.duration, 0,
@@ -82,7 +82,7 @@ pub fn print_list(h: &[History], human: bool, cmd_only: bool) {
}
});
- for i in lines.rev() {
+ for i in lines {
writer
.write_all(i.as_bytes())
.expect("failed to write to tab writer");