Commit bccad58b by Adeel Mujahid

Merge pull request #842 from andyshora/master

Fixed lint error which was causing tests to fail.
parents cb9f55e7 afc7f9d2
...@@ -336,7 +336,7 @@ module.exports.render = function(options, cb) { ...@@ -336,7 +336,7 @@ module.exports.render = function(options, cb) {
}); });
} }
options.data ? binding.render(options) : binding.renderFile(options); return options.data ? binding.render(options) : binding.renderFile(options);
}; };
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment