diff options
Diffstat (limited to 'lib/output/website/onFinish.js')
-rw-r--r-- | lib/output/website/onFinish.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/output/website/onFinish.js b/lib/output/website/onFinish.js index e3560e2..5267458 100644 --- a/lib/output/website/onFinish.js +++ b/lib/output/website/onFinish.js @@ -27,8 +27,8 @@ function onFinish(output) { return Templating.renderFile(engine, prefix + '/languages.html', context) // Write it to the disk - .then(function(html) { - return writeFile(output, filePath, html); + .then(function(tplOut) { + return writeFile(output, filePath, tplOut.getContent()); }); } |