Skip to content

Commit

Permalink
display time stamps in ISO time format
Browse files Browse the repository at this point in the history
  • Loading branch information
olivierverdier committed Nov 11, 2013
1 parent 3975ac8 commit 32142a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/gundo.py
Original file line number Diff line number Diff line change
Expand Up @@ -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__')
Expand Down

0 comments on commit 32142a6

Please sign in to comment.