diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2012-06-30 22:28:30 +0200 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2012-06-30 22:28:30 +0200 |
commit | 385e3f09bab11de51c8fa90ce34b8d43c6779f12 (patch) | |
tree | e605d77a06f618faec398aaa7f19c257961a0a99 | |
parent | 49f3cc4108d0dcc70f74ed02edf4d933c6fbfdb0 (diff) |
Decrease indentation in list-templates printout
-rw-r--r-- | src/rebar_templater.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rebar_templater.erl b/src/rebar_templater.erl index 3154b83..ce06173 100644 --- a/src/rebar_templater.erl +++ b/src/rebar_templater.erl @@ -69,7 +69,7 @@ Vars = lists:foldl(fun({V,_}, Acc) -> [atom_to_list(V) | Acc] end, [], VarList), - ?CONSOLE("\t* ~s: ~s (~p) (variables: ~p)\n", + ?CONSOLE(" * ~s: ~s (~p) (variables: ~p)\n", [BaseName, F, Type, string:join(Vars, ", ")]) end || {Type, F} <- AvailTemplates], ok. |