diff options
author | elijah <elijah@riseup.net> | 2013-03-31 14:14:37 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2013-03-31 14:14:37 -0700 |
commit | 6e57727eeac51c085670eb08dc2065706ef0f680 (patch) | |
tree | 0e0aee99a3e14aa4a5ee44978e6cf9ec9645054e /lib/leap_cli/config | |
parent | 9c131c1d84357175448496590e8d4e31e90118aa (diff) |
better error messages when json or node parsing goes wrong.
Diffstat (limited to 'lib/leap_cli/config')
-rw-r--r-- | lib/leap_cli/config/manager.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/leap_cli/config/manager.rb b/lib/leap_cli/config/manager.rb index cf4d127..f5282c5 100644 --- a/lib/leap_cli/config/manager.rb +++ b/lib/leap_cli/config/manager.rb @@ -199,7 +199,7 @@ module LeapCli # parse json begin hash = JSON.parse(buffer.string, :object_class => Hash, :array_class => Array) || {} - rescue SyntaxError => exc + rescue SyntaxError, JSON::ParserError => exc log 0, :error, 'in file "%s":' % filename log 0, exc.to_s, :indent => 1 return nil |