small tweak to exception handling

This commit is contained in:
csausdev
2010-12-11 21:59:50 +11:00
parent c870289928
commit 612d9eeb23
3 changed files with 4 additions and 4 deletions

View File

@@ -284,7 +284,7 @@ module.exports = function (fileSystem, standardOutput, configPaths) {
if (exception && exception.message && exception.name) {
this.exception = exception;
} else if (exception) {
this.exception = new Error(exception);
this.exception = new Error(sys.inspect(exception));
}
}