From 7fd5a2d630ab196702222e7b51bd32a55dad210c Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Fri, 30 Aug 2013 18:10:17 +0900 Subject: [PATCH] Fix a format of a debug output --- src/rebar_ct.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rebar_ct.erl b/src/rebar_ct.erl index f3ed29f..91cd1c3 100644 --- a/src/rebar_ct.erl +++ b/src/rebar_ct.erl @@ -280,7 +280,7 @@ get_cover_config(Config, Cwd) -> ?DEBUG("No cover spec found: ~s~n", [Cwd]), ""; [Spec] -> - ?DEBUG("Found cover file ~w~n", [Spec]), + ?DEBUG("Found cover file ~s~n", [Spec]), " -cover " ++ Spec; Specs -> ?ABORT("Multiple cover specs found: ~p~n", [Specs])