From fc4b9fe695ee9be8d452ee59fe4e6f0d83eaf2be Mon Sep 17 00:00:00 2001 From: Paul Franklin Date: Fri, 24 Feb 2017 11:08:18 -0800 Subject: [PATCH] fix bug (the option itself is always True, we want the value) --- gramps/plugins/textreport/indivcomplete.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/plugins/textreport/indivcomplete.py b/gramps/plugins/textreport/indivcomplete.py index 6593e3961..8d15e3829 100644 --- a/gramps/plugins/textreport/indivcomplete.py +++ b/gramps/plugins/textreport/indivcomplete.py @@ -158,7 +158,7 @@ class IndivCompleteReport(Report): stdoptions.run_name_format_option(self, menu) self.home_person = self._db.get_default_person() # might be None - self.increlname = menu.get_option_by_name('incl_relname') + self.increlname = menu.get_option_by_name('incl_relname').get_value() if self.increlname and self.home_person: self.rel_calc = get_relationship_calculator(reinit=True, clocale=self._locale)