2007-10-27 Benny Malengier <benny.malengier@gramps-project.org>

* src/DbManager.py: issue #1325, localize last date of change



svn: r9264
This commit is contained in:
Benny Malengier 2007-10-29 09:41:12 +00:00
parent d2f90213c2
commit c1d399a435
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,6 @@
2007-10-27 Benny Malengier <benny.malengier@gramps-project.org>
* src/DbManager.py: issue #1325, localize last date of change
2007-10-28 Gary Burton <gary.burton@zen.co.uk>
* src/Editors/_EditPlace.py: fixed name of street MonitoredEntry
* src/Editors/_EditLocation.py: fixed name of street MonitoredEntry

View File

@ -751,7 +751,8 @@ def time_val(dirpath):
meta = os.path.join(dirpath, META_NAME)
if os.path.isfile(meta):
tval = os.stat(meta)[9]
last = time.asctime(time.localtime(tval))
last = time.strftime('%x %X', time.localtime(tval))
#last = time.strftime('%a %b %d %X %Y', time.localtime(tval))
else:
tval = 0
last = _("Never")