From 1aa0e52cea482526a42ba101dbde97e0ae44444b Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Tue, 16 Apr 2013 17:52:00 -0700 Subject: [PATCH] :lipstick: --- src/stdlib/cson.coffee | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/stdlib/cson.coffee b/src/stdlib/cson.coffee index 6d331483d..5b8527d75 100644 --- a/src/stdlib/cson.coffee +++ b/src/stdlib/cson.coffee @@ -14,7 +14,8 @@ module.exports = readObjectAsync: (path, done) -> fs.readFile path, 'utf8', (err, contents) => return done(err) if err? - try done(null, @parseObject(path, contents)) + try + done(null, @parseObject(path, contents)) catch err done(err)