[Bug 5825] Error in SessionLog

locale.nl_info isn't supported, but we can use an ISO8601-like format 
without localization.



svn: r19750
This commit is contained in:
John Ralls 2012-06-03 21:51:38 +00:00
parent e84f6c41d1
commit bb38c5c0ee

View File

@ -23,7 +23,6 @@
# GRAMPS modules # GRAMPS modules
# #
#------------------------------------------------------------------------ #------------------------------------------------------------------------
import locale
import time import time
from gen.lib import Person, Family from gen.lib import Person, Family
@ -39,8 +38,6 @@ from Utils import family_name
# #
#------------------------------------------------------------------------ #------------------------------------------------------------------------
class LogGramplet(Gramplet): class LogGramplet(Gramplet):
_t_fmt = locale.nl_langinfo(locale.T_FMT)
def init(self): def init(self):
self.set_tooltip(_("Click name to change active\nDouble-click name to edit")) self.set_tooltip(_("Click name to change active\nDouble-click name to edit"))
self.set_text(_("Log for this Session") + "\n") self.set_text(_("Log for this Session") + "\n")
@ -48,7 +45,7 @@ class LogGramplet(Gramplet):
self.last_log = None self.last_log = None
def timestamp(self): def timestamp(self):
self.append_text(time.strftime(LogGramplet._t_fmt) + " ") self.append_text(time.strftime("%Y-%m-%d %H:%M:%S ")
def db_changed(self): def db_changed(self):
self.timestamp() self.timestamp()