# HG changeset patch
# User Pascal Volk <user@localhost.localdomain.org>
# Date 1354382711 0
# Node ID 4bbca60e0ba4ca08c0d8c26c701fda7ca61d1cc7
# Parent  2bf68600e9148bbf6e47ed0fb0a3298787d774fb
VMM/cli/subcommands: Print usable password schemes in sorted order.

diff -r 2bf68600e914 -r 4bbca60e0ba4 VirtualMailManager/cli/subcommands.py
--- a/VirtualMailManager/cli/subcommands.py	Mon Nov 26 22:07:20 2012 +0000
+++ b/VirtualMailManager/cli/subcommands.py	Sat Dec 01 17:25:11 2012 +0000
@@ -507,7 +507,7 @@
 
     for key, value in zip(keys, list_schemes()):
         w_std(key, len(key) * '-')
-        w_std('\n'.join(txt_wrpr.wrap(' '.join(value))), '')
+        w_std('\n'.join(txt_wrpr.wrap(' '.join(sorted(value)))), '')
 
     txt_wrpr.initial_indent, txt_wrpr.subsequent_indent = old_ii, old_si
     txt_wrpr.width = txt_wrpr.width + 8