From ec02e7437170c1a97aaf2b96c0bcba4f59c50881 Mon Sep 17 00:00:00 2001 From: "Craig J. Anderson" Date: Thu, 9 Apr 2015 09:04:22 -0400 Subject: [PATCH] minor updates --- gramps/plugins/lib/librecurse.py | 2 +- gramps/plugins/lib/libtreebase.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/gramps/plugins/lib/librecurse.py b/gramps/plugins/lib/librecurse.py index dcf54446b..600f28952 100644 --- a/gramps/plugins/lib/librecurse.py +++ b/gramps/plugins/lib/librecurse.py @@ -448,7 +448,7 @@ class AscendPerson(_StopRecurse, _PersonSeen): self.__fill(index*2, generation+1, mx_fill-1) if mx_fill > 1: # marriage of parents - self.add_marriage((generation+1, index*2), None, None) + self.add_marriage((generation+1, index*2), None, None) if not self.can_recurse(): self.continue_recursion() return diff --git a/gramps/plugins/lib/libtreebase.py b/gramps/plugins/lib/libtreebase.py index 76222de62..ab27b14a2 100644 --- a/gramps/plugins/lib/libtreebase.py +++ b/gramps/plugins/lib/libtreebase.py @@ -836,6 +836,9 @@ class LineBase(object): #self.linestr = "None" self.start = [start] self.end = [] + + def add_from(self, person): + self.start.append(person) def add_to(self, person): """ add destination boxes to draw this line to """