Skip to content
Snippets Groups Projects
Commit dccea8c73933 authored by Sylvain Thénault's avatar Sylvain Thénault
Browse files

though sorted needed

parent 98aeee052101
No related branches found
No related tags found
No related merge requests found
......@@ -58,8 +58,8 @@
def st_description(cls, funcnode, mainindex, tr):
return '%s(%s)' % (
tr(cls.name),
', '.join(child.get_description(mainindex, tr)
for child in iter_funcnode_variables(funcnode)))
', '.join(sorted(child.get_description(mainindex, tr)
for child in iter_funcnode_variables(funcnode))))
FunctionDescr.st_description = classmethod(st_description)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment