You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the ctype is a dictionary, then this whole thing is not sortable.
Python 3.8.8 (default, Mar 31 2021, 10:26:24)
[GCC 10.2.0] on linux
@>>> [('a', {'a':1}), ('a', {'a':0})].sort()
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
TypeError: '<' not supported between instances of 'dict' and 'dict'
The text was updated successfully, but these errors were encountered:
plone.app.content/plone/app/content/browser/folderfactories.py
Lines 141 to 145 in 7a1bd2b
If the
ctype
is a dictionary, then this whole thing is not sortable.The text was updated successfully, but these errors were encountered: