summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2014-06-10 10:27:04 +0100
committerSimon MacMullen <simon@rabbitmq.com>2014-06-10 10:27:04 +0100
commitc408795f2631cf9fa4cdb524ee9663070449d9d7 (patch)
treeefbe32d26dad0b95ca3d2590c47b474d5834298a
parent55a8cdf03e0f5c1e08a236360cf35423146fa7b7 (diff)
downloadrabbitmq-server-c408795f2631cf9fa4cdb524ee9663070449d9d7.tar.gz
Tweak text one more time.
-rw-r--r--src/rabbit_plugins_main.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rabbit_plugins_main.erl b/src/rabbit_plugins_main.erl
index d655e714..981fc649 100644
--- a/src/rabbit_plugins_main.erl
+++ b/src/rabbit_plugins_main.erl
@@ -336,8 +336,8 @@ rpc_call(Node, Mod, Fun, Args) ->
{ok, [], Stop} ->
io:format(" stopped ~b plugin~s.~n", [length(Stop), plur(Stop)]);
{ok, Start, Stop} ->
- io:format(" started ~b and stopped ~b plugin~s.~n",
- [length(Start), length(Stop), plur(Start ++ Stop)]);
+ io:format(" stopped ~b plugin~s and started ~b plugin~s.~n",
+ [length(Stop), plur(Stop), length(Start), plur(Start)]);
{badrpc, _} = Error ->
io:format(" failed.~n", []),
Error