summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2012-10-29 14:38:23 +0000
committerSimon MacMullen <simon@rabbitmq.com>2012-10-29 14:38:23 +0000
commit114ee456a1254cef2c4d3ec91ae37a9eea1a8018 (patch)
tree7e29829ba7562d84f7da76b1f5cbb5d50d530528
parent8d72e0af5163596451aaa6fa5da1d4cfd71c1ef5 (diff)
downloadrabbitmq-server-bug24719.tar.gz
Formattingbug24719
-rw-r--r--src/rabbit_plugins_main.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/rabbit_plugins_main.erl b/src/rabbit_plugins_main.erl
index 33da1821..2158d1da 100644
--- a/src/rabbit_plugins_main.erl
+++ b/src/rabbit_plugins_main.erl
@@ -223,14 +223,14 @@ format_plugin(#plugin{name = Name, version = Version,
end,
case Format of
minimal -> io:format("~s~n", [Name]);
- normal -> io:format("~s ~-" ++ integer_to_list(MaxWidth) ++ "w",
+ normal -> io:format("~s ~-" ++ integer_to_list(MaxWidth) ++ "w ",
[Glyph, Name]),
Opt("~s", Version, undefined),
io:format("~n");
verbose -> io:format("~s ~w~n", [Glyph, Name]),
- Opt(" Version: \t~s~n", Version, undefined),
+ Opt(" Version: \t~s~n", Version, undefined),
Opt(" Dependencies:\t~p~n", Deps, []),
- Opt(" Description:\t~s~n", Description, undefined),
+ Opt(" Description: \t~s~n", Description, undefined),
io:format("~n")
end.