diff --git a/deps/rabbitmq_auth_backend_ldap/src/rabbit_auth_backend_ldap_app.erl b/deps/rabbitmq_auth_backend_ldap/src/rabbit_auth_backend_ldap_app.erl index f2bbd350aa..923214cf5d 100644 --- a/deps/rabbitmq_auth_backend_ldap/src/rabbit_auth_backend_ldap_app.erl +++ b/deps/rabbitmq_auth_backend_ldap/src/rabbit_auth_backend_ldap_app.erl @@ -38,7 +38,7 @@ start(_Type, _StartArgs) -> true -> ok; false -> rabbit_log_ldap:warning( "LDAP plugin loaded, but rabbit_auth_backend_ldap is not " - "in the list of auth_backends. LDAP auth will not work.~n") + "in the list of auth_backends. LDAP auth will not work.") end, {ok, SSL} = application:get_env(rabbitmq_auth_backend_ldap, use_ssl), {ok, TLS} = application:get_env(rabbitmq_auth_backend_ldap, use_starttls), @@ -62,4 +62,3 @@ configured(M, [_ |T]) -> configured(M, T). %%---------------------------------------------------------------------------- init([]) -> {ok, {{one_for_one, 3, 10}, []}}. -