Commit 2848c950 authored by Yusei Tahara's avatar Yusei Tahara

Sort comment list before output.

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@23268 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent b685a50c
......@@ -209,6 +209,7 @@ message_list = message_dict.keys()\n
message_list.sort()\n
for message in message_list:\n
comment_list = message_dict[message]\n
comment_list = comment_list.sort()\n
comment = \'\\n\'.join([(\'#: %s\' % i) for i in comment_list])\n
print MESSAGE_TEMPLATE % (comment, format(message))\n
\n
......
325
\ No newline at end of file
326
\ No newline at end of file
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