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:
parent
d2f90213c2
commit
c1d399a435
@ -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
|
||||
|
@ -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")
|
||||
|
Loading…
x
Reference in New Issue
Block a user