Skip to content

Commit

Permalink
Display time stamps in ISO time format (fix regression)
Browse files Browse the repository at this point in the history
Fixes: simnalamburt#3
Closes: sjl/gundo.vim#28

Regression: 3b94d2d
Introduced in: 32142a6
  • Loading branch information
olivierverdier authored and ypid committed Dec 28, 2020
1 parent 33a91cc commit e469bed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/mundo/node.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def current(self):
return current

def _fmt_time(self,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 _get_lines(self,node):
n = 0
Expand Down

0 comments on commit e469bed

Please sign in to comment.