aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTristan Sloughter <[email protected]>2015-05-08 11:45:22 -0500
committerTristan Sloughter <[email protected]>2015-05-08 11:45:22 -0500
commit58fec57db3d99ffb5aefd0d5751d7bbda6762f66 (patch)
treed18fb57579cb3e58984599bdb2c926db9314d294 /src
parent88d1f29257869b0de9369881236477163804125a (diff)
downloadrelx-58fec57db3d99ffb5aefd0d5751d7bbda6762f66.tar.gz
relx-58fec57db3d99ffb5aefd0d5751d7bbda6762f66.tar.bz2
relx-58fec57db3d99ffb5aefd0d5751d7bbda6762f66.zip
use mustache v0.3.0
Diffstat (limited to 'src')
-rw-r--r--src/rlx_util.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rlx_util.erl b/src/rlx_util.erl
index 4639ffa..2251b4f 100644
--- a/src/rlx_util.erl
+++ b/src/rlx_util.erl
@@ -156,7 +156,7 @@ render(Template) ->
render(Template, []).
render(Template, Data) ->
- {ok, mustache:render(ec_cnv:to_binary(Template), Data)}.
+ {ok, mustache:render(ec_cnv:to_binary(Template), Data, [{key_type, atom}])}.
load_file(Files, escript, Name) ->
{Name, Bin} = lists:keyfind(Name, 1, Files),