We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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.
The text was updated successfully, but these errors were encountered: