bug 9831: Fix HandleError when using finddupes tool to merge

This commit is contained in:
prculley 2016-12-19 10:37:19 -06:00 committed by Nick Hall
parent dc320aab8c
commit 90b8145693

View File

@ -592,6 +592,8 @@ class DuplicatePeopleToolMatches(ManagedWindow):
if p1key in self.dellist: if p1key in self.dellist:
continue continue
(p2key,c) = p1data (p2key,c) = p1data
if p2key in self.dellist:
continue
if p1key == p2key: if p1key == p2key:
continue continue
list.append((c,p1key,p2key)) list.append((c,p1key,p2key))