From 32142a6ae0ae15d3abd745c404b7fb11c7d94df3 Mon Sep 17 00:00:00 2001 From: Olivier Verdier Date: Mon, 11 Nov 2013 19:50:24 +0100 Subject: [PATCH] display time stamps in ISO time format --- autoload/gundo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/gundo.py b/autoload/gundo.py index e80dcda..5f44426 100644 --- a/autoload/gundo.py +++ b/autoload/gundo.py @@ -331,7 +331,7 @@ def changenr(nodes): # Rendering utility functions def _fmt_time(t): - return time.strftime('%Y-%m-%d %I:%M:%S %p', time.localtime(float(t))) + return time.strftime('%Y-%m-%d %H:%M:%S', time.localtime(float(t))) def _output_preview_text(lines): _goto_window_for_buffer_name('__Gundo_Preview__')