PEP 8 compliance
[mw] / src / mw / cli.py
index ef33d7357b41a267edb7237f28038a892fc0932a..c16791e7a9e3e6763ededc496dc95d8b6723f8e7 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) + ')'
@@ -59,7 +61,7 @@ class CLI(object):
         # determine what the subcommand is
         if len(sys.argv) > 1:
             if sys.argv[1] in self.all_commands:
-                the_command = sys.argv[1] # SWEET ACTION
+                the_command = sys.argv[1]  # SWEET ACTION
             elif sys.argv[1] in ['--help', '-h', 'help']:
                 self.usage()
             else:

Benjamin Mako Hill || Want to submit a patch?