From 6bab78df21a7936521766dc567c6f6a428c54e47 Mon Sep 17 00:00:00 2001 From: Paul Culley Date: Mon, 3 Sep 2018 17:53:22 -0500 Subject: [PATCH] Fix Find Database Loop Tool (bad import of _collections) (#643) Fixes #10722 --- gramps/plugins/tool/findloop.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gramps/plugins/tool/findloop.py b/gramps/plugins/tool/findloop.py index c0ba0a243..a49ab06b8 100644 --- a/gramps/plugins/tool/findloop.py +++ b/gramps/plugins/tool/findloop.py @@ -18,7 +18,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. # -from _collections import OrderedDict +from collections import OrderedDict "Find possible loop in a people descendance"