From fad158f40956c99f6e3ebb7d0723805f44f9d0eb Mon Sep 17 00:00:00 2001 From: SNoiraud Date: Tue, 21 Jun 2016 08:03:44 +0200 Subject: [PATCH] 9495: Narrativeweb: inconsistent & incomplete display of place hierarchy labels --- gramps/plugins/webreport/narrativeweb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/plugins/webreport/narrativeweb.py b/gramps/plugins/webreport/narrativeweb.py index 1988eb5d2..0f337577a 100644 --- a/gramps/plugins/webreport/narrativeweb.py +++ b/gramps/plugins/webreport/narrativeweb.py @@ -3832,7 +3832,7 @@ class PlacePages(BasePage): def sort_by_place_name(obj): place = self.r_db.get_place_from_handle(obj) name = _pd.display(self.r_db, place) - return (name) + return (name.lower()) handle_list = sorted(place_handles, key=lambda x: sort_by_place_name(x))