From 90b814569388e65b2e7968a3464758dac1dd2da7 Mon Sep 17 00:00:00 2001 From: prculley Date: Mon, 19 Dec 2016 10:37:19 -0600 Subject: [PATCH] bug 9831: Fix HandleError when using finddupes tool to merge --- gramps/plugins/tool/finddupes.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gramps/plugins/tool/finddupes.py b/gramps/plugins/tool/finddupes.py index b1ae4d811..5157f0169 100644 --- a/gramps/plugins/tool/finddupes.py +++ b/gramps/plugins/tool/finddupes.py @@ -592,6 +592,8 @@ class DuplicatePeopleToolMatches(ManagedWindow): if p1key in self.dellist: continue (p2key,c) = p1data + if p2key in self.dellist: + continue if p1key == p2key: continue list.append((c,p1key,p2key))