Rev 5885 fixes the crash you mention in unregisterOneHandler.
File "/home/ville/b/leo-editor/leo/core/leoPlugins.py", line 735, in
unregisterOneHandler
bunches = [bunch for bunch in bunches if bunch.fn != fn]
TypeError: 'NoneType' object is not iterable
The fix was just to add a guard:
bunches = [bunch for bunch in bunches if bunch and bunch.fn != fn]
Where is this work now, and how would you like it described in the release
notes?
Edward
--
You received this message because you are subscribed to the Google Groups
"leo-editor" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/leo-editor.
For more options, visit https://groups.google.com/groups/opt_out.