Index: roundup/date.py =================================================================== RCS file: /cvsroot/roundup/roundup/roundup/date.py,v retrieving revision 1.77 diff -u -r1.77 date.py --- roundup/date.py 29 Nov 2004 14:32:55 -0000 1.77 +++ roundup/date.py 19 Dec 2004 00:20:51 -0000 @@ -368,7 +368,7 @@ format, then the day number will be removed from output. ''' str = time.strftime(format, (self.year, self.month, self.day, - self.hour, self.minute, int(self.second), 0, 0, 0)) + self.hour, self.minute, int(self.second), 0, 1, 0)) # handle zero day by removing it if format.startswith('%d') and str[0] == '0': return ' ' + str[1:]