Add space to the read json error message.

This commit is contained in:
André Cruz
2013-03-11 19:42:22 +00:00
parent d1dc1564f3
commit 56b59da0cf

View File

@@ -360,7 +360,7 @@ Package.prototype.loadJSON = function () {
readJSON(jsonFile, function (err, json) {
if (err) {
err.details = 'An error was caught when reading the ' + this.localConfig.json + ':' + err.message;
err.details = 'An error was caught when reading the ' + this.localConfig.json + ': ' + err.message;
return this.emit('error', err);
}