(whoops, forgot to actually return the data)
[mw] / src / mw / cli.py
index ef33d7357b41a267edb7237f28038a892fc0932a..52df23b658101c7a7d909e6c1ed8ad3466fc03c8 100644 (file)
@@ -45,7 +45,9 @@ class CLI(object):
     def usage(self):
         print 'usage: %s [subcommand]' % self.me
         print
-        for name in self.commands:
+        commands = self.commands.keys()
+        commands.sort()
+        for name in commands:
             cmd = self.commands[name]
             if len(cmd.shortcuts) > 0:
                 full = name + ' (' + ' '.join(cmd.shortcuts) + ')'

Benjamin Mako Hill || Want to submit a patch?