From 2410435d8c7d73d869938321460d25d4da42cb88 Mon Sep 17 00:00:00 2001 From: prculley Date: Mon, 5 Feb 2018 12:12:57 -0600 Subject: [PATCH] Fix Family Lines Graph when 'unknown' places are present Fixes #10402 --- gramps/plugins/graph/gvfamilylines.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/plugins/graph/gvfamilylines.py b/gramps/plugins/graph/gvfamilylines.py index 150deebc7..5507558ea 100644 --- a/gramps/plugins/graph/gvfamilylines.py +++ b/gramps/plugins/graph/gvfamilylines.py @@ -1072,7 +1072,7 @@ class FamilyLinesReport(Report): def get_event_place(self, event): """ get the place of the event """ - place_text = None + place_text = '' place_handle = event.get_place_handle() if place_handle: place = self._db.get_place_from_handle(place_handle)