Commit 3ed24d22 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki Committed by Arnaud Fontaine

py2/py3: make HBTreeFolder2 code compatible.

parent c412098d
......@@ -423,7 +423,10 @@ class HBTreeFolder2Base (Persistent):
s.append((k, six.iteritems(v)))
break
s.append((k, six.iteritems(v)))
r.sort()
if six.PY2:
r.sort()
else:
r.sort(key=lambda e: '' if e is None else e)
return r
security.declareProtected(access_contents_information,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment