fix timestamp

This commit is contained in:
cidoku 2025-03-10 20:27:59 -03:00
parent 9157aee402
commit d282dfd232

View File

@ -2573,7 +2573,7 @@ class gui(QtGui.QWidget):
t = time.localtime() t = time.localtime()
logcharname = f_char logcharname = f_char
timestamp = "[%d:%.2d " % (t[3], t[4]) if not self.demo_playing else "" timestamp = "[%d:%.2d] " % (t[3], t[4]) if not self.demo_playing else ""
if f_char.lower() != self.charlist[f_char_id][0].lower(): if f_char.lower() != self.charlist[f_char_id][0].lower():
logcharname = self.charlist[f_char_id][0] + ' (' + f_char.decode("utf-8") + ')' logcharname = self.charlist[f_char_id][0] + ' (' + f_char.decode("utf-8") + ')'