Remove bad tab
svn: r6333
This commit is contained in:
parent
6e6f9fbfba
commit
bce7c49fde
@ -1,3 +1,6 @@
|
|||||||
|
2006-04-13 Don Allingham <don@gramps-project.org>
|
||||||
|
* src/DataViews/_FamilyView.py: remove bad tab
|
||||||
|
|
||||||
2006-04-13 Alex Roitman <shura@gramps-project.org>
|
2006-04-13 Alex Roitman <shura@gramps-project.org>
|
||||||
* src/GrampsDb/_GrampsBSDDB.py: Upgrade path to new RelLib.
|
* src/GrampsDb/_GrampsBSDDB.py: Upgrade path to new RelLib.
|
||||||
* src/RelLib/_Family.py: Require non-empty child_ref.
|
* src/RelLib/_Family.py: Require non-empty child_ref.
|
||||||
|
@ -467,17 +467,12 @@ class FamilyView(PageView.PersonNavView):
|
|||||||
if self.show_siblings:
|
if self.show_siblings:
|
||||||
active = self.dbstate.active.handle
|
active = self.dbstate.active.handle
|
||||||
|
|
||||||
print family.get_child_ref_list()
|
|
||||||
|
|
||||||
child_list = [ref.ref for ref in family.get_child_ref_list()\
|
child_list = [ref.ref for ref in family.get_child_ref_list()\
|
||||||
if ref.ref != active]
|
if ref.ref != active]
|
||||||
|
|
||||||
print child_list
|
|
||||||
|
|
||||||
label = _("Siblings")
|
label = _("Siblings")
|
||||||
if child_list:
|
if child_list:
|
||||||
for child_handle in child_list:
|
for child_handle in child_list:
|
||||||
print child_handle
|
|
||||||
self.write_child(label, child_handle)
|
self.write_child(label, child_handle)
|
||||||
label = u""
|
label = u""
|
||||||
self.row += 1
|
self.row += 1
|
||||||
|
Loading…
Reference in New Issue
Block a user