summaryrefslogtreecommitdiff
path: root/src/rebar_templater.erl
diff options
context:
space:
mode:
authorJared Morrow <jared@basho.com>2014-01-14 13:38:30 -0800
committerJared Morrow <jared@basho.com>2014-01-14 13:38:30 -0800
commit5d2b9ba23f8e32ad4f99850a71c62d8b7df262d8 (patch)
treedbdde09160cb05d918fef71c2164c6840d15ef28 /src/rebar_templater.erl
parentcf3a24e5c7c48b05e3b51bcc6ff2128b3fd71c07 (diff)
parent34ead92c8332ce8681d3cd54561562a2eac9b43e (diff)
Merge pull request #191 from tuncer/rename-modules
Fix #187 (rename getopt and mustache)
Diffstat (limited to 'src/rebar_templater.erl')
-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 c21daa3..43bb8da 100644
--- a/src/rebar_templater.erl
+++ b/src/rebar_templater.erl
@@ -103,7 +103,7 @@ render(Bin, Context) ->
ReOpts = [global, {return, list}],
Str0 = re:replace(Bin, "\\\\", "\\\\\\", ReOpts),
Str1 = re:replace(Str0, "\"", "\\\\\"", ReOpts),
- mustache:render(Str1, Context).
+ rebar_mustache:render(Str1, Context).
%% ===================================================================
%% Internal functions