In Plone 5.2 under Python 3 i'm getting
Module plone.app.workflow.browser.sharing, line 282, in existing_role_settings
TypeError: '<' not supported between instances of 'dict' and 'dict'
when opening the sharing view.
I didn't see this error before the migration to Python 2, and indeed {} < {} returns False in Python 2, but raises an error in Python 3.
The list that would have been sorted in that does have a dict as last element.
In Plone 5.2 under Python 3 i'm getting
when opening the sharing view.
I didn't see this error before the migration to Python 2, and indeed
{} < {}returns False in Python 2, but raises an error in Python 3.The list that would have been sorted in that does have a dict as last element.