Date arithmetic typo

svn: r9668
This commit is contained in:
Doug Blank 2007-12-31 23:26:50 +00:00
parent a066962d6a
commit 3295364aa2

View File

@ -624,7 +624,7 @@ class Date:
dv[Date._POS_MON] = dv[Date._POS_MON] % 12
self.dateval = tuple(dv)
self._calc_sort_value()
if day != 0 or dv[Date.POS_DAY] > 28:
if day != 0 or dv[Date._POS_DAY] > 28:
self.set_yr_mon_day(*self.offset(day))
def copy_offset_ymd(self, year=0, month=0, day=0):