From 28bb84c379afce7513bf57556420880fb6fdbfa6 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Tue, 31 Jul 2012 09:01:22 -0700 Subject: [PATCH] tweak subcommand help output --- edbob/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edbob/commands.py b/edbob/commands.py index 0974ed1..1809d60 100644 --- a/edbob/commands.py +++ b/edbob/commands.py @@ -110,7 +110,7 @@ Options: Commands:""" % self for cmd in self.iter_subcommands(): - print " %-16s %s" % (cmd.name, cmd.description) + print " %-17s %s" % (cmd.name, cmd.description) print """ Try '%(name)s help ' for more help.""" % self