summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexandru Scvortov <alexandru@rabbitmq.com>2011-10-03 19:02:22 +0100
committerAlexandru Scvortov <alexandru@rabbitmq.com>2011-10-03 19:02:22 +0100
commit77fd8fde4c0e280bcd58ba3ae8e62cc7994ae0ff (patch)
tree44c863e199559702eb044939e36c7e3f77d4751a
parent5df2548cd301fd679cb7aeabe04ccf7d6f50fcaf (diff)
downloadrabbitmq-server-77fd8fde4c0e280bcd58ba3ae8e62cc7994ae0ff.tar.gz
bin_to_list -> binary_to_list
-rw-r--r--src/rabbit_plugins.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_plugins.erl b/src/rabbit_plugins.erl
index 0f6727a4..d9e547e1 100644
--- a/src/rabbit_plugins.erl
+++ b/src/rabbit_plugins.erl
@@ -217,7 +217,7 @@ find_app_files(ZippedFiles) ->
%% Parse a binary into a term.
parse_binary(Bin) ->
try
- {ok, Ts, _} = erl_scan:string(binary:bin_to_list(Bin)),
+ {ok, Ts, _} = erl_scan:string(binary_to_list(Bin)),
{ok, Term} = erl_parse:parse_term(Ts),
Term
catch