2004-08-20 Tim Waugh <twaugh@redhat.com>
* src/plugins/RelCalc.py (__init__): Handle unknown birth dates. svn: r3449
This commit is contained in:
parent
fad53895fe
commit
7a22617b52
@ -1,4 +1,5 @@
|
|||||||
2004-08-20 Tim Waugh <twaugh@redhat.com>
|
2004-08-20 Tim Waugh <twaugh@redhat.com>
|
||||||
|
* src/plugins/RelCalc.py (__init__): Handle unknown birth dates.
|
||||||
* src/Calendar.py (calendar_names): Fixed typo.
|
* src/Calendar.py (calendar_names): Fixed typo.
|
||||||
|
|
||||||
2004-08-19 Don Allingham <dallingham@users.sourceforge.net>
|
2004-08-19 Don Allingham <dallingham@users.sourceforge.net>
|
||||||
|
@ -99,7 +99,10 @@ class RelCalc:
|
|||||||
continue
|
continue
|
||||||
val = self.db.get_person_from_handle(key).get_display_info()
|
val = self.db.get_person_from_handle(key).get_display_info()
|
||||||
event = self.db.find_event_from_handle(val[3])
|
event = self.db.find_event_from_handle(val[3])
|
||||||
self.clist.add([val[0],val[1],event.get_date(),val[5],val[6]],p.get_handle())
|
event_date = None
|
||||||
|
if event:
|
||||||
|
event_date = event.get_date ()
|
||||||
|
self.clist.add([val[0],val[1],event_date,val[5],val[6]],p.get_handle())
|
||||||
|
|
||||||
self.clist.connect_model()
|
self.clist.connect_model()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user