VirtualMailManager/cli/subcommands.py
branchv0.6.x
changeset 481 90d69ae4f40d
parent 474 4353981e3a7f
child 487 fb0af82ab4af
--- a/VirtualMailManager/cli/subcommands.py	Sun Nov 13 19:59:26 2011 +0000
+++ b/VirtualMailManager/cli/subcommands.py	Sun Nov 13 20:18:41 2011 +0000
@@ -436,7 +436,8 @@
 
     for key, value in zip(keys, list_schemes()):
         if key.endswith(':'):  # who knows … (see TODO above)
-            key = key.rpartition(':')[0]
+            #key = key.rpartition(':')[0]
+            key = key[:-1]  # This one is for Py24
         w_std(key, len(key) * '-')
         w_std('\n'.join(txt_wrpr.wrap(' '.join(value))), '')