Bug #1321: Fixed logic error in TimedRotatingFileHandler.__init__()

This commit is contained in:
Vinay Sajip 2007-10-24 10:47:06 +00:00
parent 3a8daf5b56
commit bababa3ecc
1 changed files with 5 additions and 5 deletions

View File

@ -230,11 +230,11 @@ class TimedRotatingFileHandler(BaseRotatingHandler):
# of days in the next week until the rollover day (3).
if when.startswith('W'):
day = t[6] # 0 is Monday
if day > self.dayOfWeek:
daysToWait = (day - self.dayOfWeek) - 1
self.rolloverAt = self.rolloverAt + (daysToWait * (60 * 60 * 24))
if day != self.dayOfWeek:
if day < self.dayOfWeek:
daysToWait = (6 - self.dayOfWeek) + day
daysToWait = self.dayOfWeek - day - 1
else:
daysToWait = 6 - day + self.dayOfWeek
self.rolloverAt = self.rolloverAt + (daysToWait * (60 * 60 * 24))
#print "Will rollover at %d, %d seconds from now" % (self.rolloverAt, self.rolloverAt - currentTime)