Undo removal of unicode prefix in server/datetemplate.py

pull/128/merge^2
Steven Hiscocks 2013-02-24 19:22:50 +00:00
parent 31b173f032
commit 3a3d07ef39
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ class DateStrptime(DateTemplate):
# that the log is not from this year but from the year before
if time.mktime(tuple(date)) > MyTime.time():
logSys.debug(
"Correcting deduced year from %d to %d since %f > %f" %
u"Correcting deduced year from %d to %d since %f > %f" %
(date[0], date[0]-1, time.mktime(tuple(date)), MyTime.time()))
date[0] -= 1
elif date[1] == 1 and date[2] == 1: