Browse Source

Decrease indentation in list-templates printout

pull/3/head
Tuncer Ayaz 13 years ago
parent
commit
385e3f09ba
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/rebar_templater.erl

+ 1
- 1
src/rebar_templater.erl View File

@ -69,7 +69,7 @@
Vars = lists:foldl(fun({V,_}, Acc) -> Vars = lists:foldl(fun({V,_}, Acc) ->
[atom_to_list(V) | Acc] [atom_to_list(V) | Acc]
end, [], VarList), end, [], VarList),
?CONSOLE("\t* ~s: ~s (~p) (variables: ~p)\n",
?CONSOLE(" * ~s: ~s (~p) (variables: ~p)\n",
[BaseName, F, Type, string:join(Vars, ", ")]) [BaseName, F, Type, string:join(Vars, ", ")])
end || {Type, F} <- AvailTemplates], end || {Type, F} <- AvailTemplates],
ok. ok.

Loading…
Cancel
Save