7198, 7212: attach invalid date to DateError
Back-port [872bf57
] from gramps40
This commit is contained in:
parent
d96b01318a
commit
a00b413906
@ -1647,9 +1647,10 @@ class Date(object):
|
|||||||
raise DateError("Invalid year {0} passed in value {1}".
|
raise DateError("Invalid year {0} passed in value {1}".
|
||||||
format(original, value))
|
format(original, value))
|
||||||
|
|
||||||
except DateError:
|
except DateError as e:
|
||||||
log.debug("Sanity check failed - self: {0}, sanity: {1}".format(
|
log.debug("Sanity check failed - self: {0}, sanity: {1}".format(
|
||||||
self.dateval, sanity.dateval))
|
self.dateval, sanity.dateval))
|
||||||
|
e.date = self
|
||||||
raise
|
raise
|
||||||
|
|
||||||
def recalc_sort_value(self):
|
def recalc_sort_value(self):
|
||||||
|
Loading…
Reference in New Issue
Block a user