Fixed year handling
svn: r595
This commit is contained in:
parent
f297268824
commit
68465ccd5e
@ -896,7 +896,11 @@ class SingleDate:
|
||||
self.day = int(string.replace(val,',',''))
|
||||
else:
|
||||
self.day = UNDEF
|
||||
val = matches[3]
|
||||
if val:
|
||||
self.setYearVal(matches[3])
|
||||
else:
|
||||
self.setYearVal(UNDEF)
|
||||
return 1
|
||||
|
||||
match = SingleDate.fmt4.match(text)
|
||||
|
Loading…
Reference in New Issue
Block a user