8477: date format month/year is not well reported at editing time

This commit is contained in:
Paul Franklin 2015-04-09 22:07:41 -07:00 committed by Ross Gammon
parent 8c7aa07992
commit 83c689dd87

View File

@ -627,8 +627,12 @@ class DateParser(object):
else:
y = self._get_int(groups[4])
if self.dmy:
m = self._get_int(groups[3])
d = self._get_int(groups[1])
if groups[3] is None:
m = self._get_int(groups[1])
d = 0
else:
m = self._get_int(groups[3])
d = self._get_int(groups[1])
else:
m = self._get_int(groups[1])
d = self._get_int(groups[3])