Bug #1984 No output from export view

svn: r10511
This commit is contained in:
Gary Burton 2008-04-06 20:48:07 +00:00
parent d2bf1e61b2
commit 5057e7fc2a

View File

@ -982,7 +982,9 @@ class PersonView(PageView.PersonNavView):
path = (0, )
node = self.model.on_get_iter(path)
while node:
# Node might be null if the surname is not known so test against None
while node != None:
real_iter = self.model.get_iter(path)
for subindex in range(0, self.model.iter_n_children(real_iter)):
subpath = ((path[0], subindex))