Commit afc7f9d2 by Andy Shora

Fixed lint error which was causing tests to fail.

parent cb9f55e7
...@@ -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