Fixing error handling bug resulting from typo

This commit is contained in:
Patrick Steele-Idem 2014-07-29 13:20:33 -06:00
parent adf0b5de41
commit 6ac26ef423

View File

@ -105,7 +105,7 @@ TemplateCompiler.prototype = {
if (callback) {
return callback.call(thisObj, err);
} else {
throw error;
throw err;
}
}