From 75f2d21e7c755f2f2b82a4d9d50b8cedcd163148 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Beno=C3=AEt=20Fontaine?= Date: Sun, 29 Oct 2017 17:44:27 +0100 Subject: [PATCH] fix bug notes --- getmyancestors.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/getmyancestors.py b/getmyancestors.py index 04fcc6e..12b20ff 100755 --- a/getmyancestors.py +++ b/getmyancestors.py @@ -679,7 +679,8 @@ class Fam: temp.add(contributors['name']) if temp: text = 'Contributeurs :\n' + '\n'.join(sorted(temp)) - for n in self.tree.notes: + notes = self.tree.notes + for n in notes: if n.text == text: self.notes.add(n) return -- 2.52.0