summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2012-10-29 14:38:58 +0000
committerSimon MacMullen <simon@rabbitmq.com>2012-10-29 14:38:58 +0000
commit2e97201381e9817035ad3025b717d120fc8d7c7e (patch)
tree25d773d8866cd695e1919b49f26ebd12acfd1d39
parent0dbe14f9884a76f9e0af50831016b09526a3915b (diff)
parent114ee456a1254cef2c4d3ec91ae37a9eea1a8018 (diff)
downloadrabbitmq-server-2e97201381e9817035ad3025b717d120fc8d7c7e.tar.gz
Merge to default again
-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.