2006-11-07 Alex Roitman <shura@gramps-project.org>

* src/DataViews/_RelationView.py (info_string): Add missing clause.



svn: r7579
This commit is contained in:
Alex Roitman 2006-11-07 20:48:15 +00:00
parent 5b8f2e97fb
commit e537fe173d
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,6 @@
2006-11-07 Alex Roitman <shura@gramps-project.org>
* src/DataViews/_RelationView.py (info_string): Add missing clause.
2006-11-07 Martin Hawlisch <Martin.Hawlisch@gmx.de>
* src/DisplayModels/_PeopleModel.py: Make fallbacks for birth and
death work again.

View File

@ -778,6 +778,8 @@ class RelationshipView(PageView.PersonNavView):
value = _("b. %s") % (bdate)
elif ddate:
value = _("d. %s") % (ddate)
else:
value = ""
return value
def button_press(self, obj, event, handle):