From 993a5c2fcdcfaf05e1db3ef1996329b1150ad87a Mon Sep 17 00:00:00 2001 From: Doug Blank Date: Wed, 17 Feb 2010 11:53:19 +0000 Subject: [PATCH] Unoptimized to work svn: r14407 --- src/gen/lib/notebase.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gen/lib/notebase.py b/src/gen/lib/notebase.py index e7b86189c..06c6c5f87 100644 --- a/src/gen/lib/notebase.py +++ b/src/gen/lib/notebase.py @@ -84,7 +84,8 @@ class NoteBase(object): """ if handle in self.note_list: self.note_list.remove(handle) - map(item.remove_note, self.get_note_child_list()) + for item in self.get_note_child_list(): + item.remove_note(handle) def get_note_child_list(self): """