From 4dc67910fdc397a86bb89d520239756da5b134b1 Mon Sep 17 00:00:00 2001 From: Paul Culley Date: Mon, 30 Apr 2018 19:31:29 -0500 Subject: [PATCH] Fix Citation Tree view for crash after plugin reload (#602) Fixes #10541 --- gramps/plugins/view/citationtreeview.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/plugins/view/citationtreeview.py b/gramps/plugins/view/citationtreeview.py index 3e2c65cf9..8121e9620 100644 --- a/gramps/plugins/view/citationtreeview.py +++ b/gramps/plugins/view/citationtreeview.py @@ -159,7 +159,7 @@ class CitationTreeView(ListView): def change_active(self, handle): try: self.dbstate.db.get_citation_from_handle(handle) - super(CitationTreeView, self).change_active(handle) + super().change_active(handle) except HandleError: # FIXME: See http://www.gramps-project.org/bugs/view.php?id=6352 a # more comprehensive solution is needed in the long term. See also