summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTuncer Ayaz <tuncer.ayaz@gmail.com>2012-06-30 22:28:30 +0200
committerTuncer Ayaz <tuncer.ayaz@gmail.com>2012-06-30 22:28:30 +0200
commit385e3f09bab11de51c8fa90ce34b8d43c6779f12 (patch)
treee605d77a06f618faec398aaa7f19c257961a0a99 /src
parent49f3cc4108d0dcc70f74ed02edf4d933c6fbfdb0 (diff)
Decrease indentation in list-templates printout
Diffstat (limited to 'src')
-rw-r--r--src/rebar_templater.erl2
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.