8477: date format month/year is not well reported at editing time
This commit is contained in:
parent
8069855017
commit
d86aa283eb
@ -627,6 +627,10 @@ class DateParser(object):
|
|||||||
else:
|
else:
|
||||||
y = self._get_int(groups[4])
|
y = self._get_int(groups[4])
|
||||||
if self.dmy:
|
if self.dmy:
|
||||||
|
if groups[3] is None:
|
||||||
|
m = self._get_int(groups[1])
|
||||||
|
d = 0
|
||||||
|
else:
|
||||||
m = self._get_int(groups[3])
|
m = self._get_int(groups[3])
|
||||||
d = self._get_int(groups[1])
|
d = self._get_int(groups[1])
|
||||||
else:
|
else:
|
||||||
|
Loading…
Reference in New Issue
Block a user