From 82cd211d290e5f3875e48d80012428d574e0079e Mon Sep 17 00:00:00 2001 From: SNoiraud Date: Sun, 8 Sep 2019 11:04:11 +0200 Subject: [PATCH] Remove reload_custom_filters to conform to PR894 --- gramps/plugins/webreport/narrativeweb.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/gramps/plugins/webreport/narrativeweb.py b/gramps/plugins/webreport/narrativeweb.py index ca2471ae6..7ffecc697 100644 --- a/gramps/plugins/webreport/narrativeweb.py +++ b/gramps/plugins/webreport/narrativeweb.py @@ -80,7 +80,6 @@ from gramps.gen.display.place import displayer as _pd from gramps.gen.proxy import CacheProxyDb from gramps.plugins.lib.libhtmlconst import _CHARACTER_SETS, _CC, _COPY_OPTIONS from gramps.gen.relationship import get_relationship_calculator -from gramps.gen.filters import reload_custom_filters #------------------------------------------------ # specific narrative web import @@ -2180,7 +2179,6 @@ class NavWebOptions(MenuReportOptions): Update the filter list based on the selected person """ gid = self.__pid.get_value() - reload_custom_filters() person = self.__db.get_person_from_gramps_id(gid) filter_list = utils.get_person_filters(person, include_single=False) self.__filter.set_filters(filter_list)