Skip to content

Commit

Permalink
fixed a bug in the sub command showing
Browse files Browse the repository at this point in the history
  • Loading branch information
jashmenn committed May 8, 2009
1 parent c02b859 commit b2d4a01
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/git-style-binary/helpers/name_resolver.rb
Expand Up @@ -69,7 +69,7 @@ def pretty_known_subcommands
GitStyleBinary.known_commands.collect do |k,cmd|
next if k == basename
cmd.process_parser!
("%-s%-10s" % [basename, k]).colorize(:blue) + "\n " + ("%s" % [cmd.short_desc]) + "\n"
("%-s%s%-10s" % [basename, '-', k]).colorize(:blue) + "\n " + ("%s" % [cmd.short_desc]) + "\n"
end.compact.sort
end

Expand Down

0 comments on commit b2d4a01

Please sign in to comment.