diff options
author | Ralph Amissah <ralph@amissah.com> | 2012-05-06 23:48:53 -0400 |
---|---|---|
committer | Ralph Amissah <ralph@amissah.com> | 2012-05-06 23:48:53 -0400 |
commit | 5af7a5e47fff51efd7602bc0f240e64cd6f33b95 (patch) | |
tree | cc68b1e55a34c8be60f1c5a81c2f1724d23a72ac /lib/sisu/v3/html_tune.rb | |
parent | v3: 3.2.7 version & changelog "opened" (diff) |
v3: rescue & error warnings, some touched
Diffstat (limited to 'lib/sisu/v3/html_tune.rb')
-rw-r--r-- | lib/sisu/v3/html_tune.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/sisu/v3/html_tune.rb b/lib/sisu/v3/html_tune.rb index e4ac08ee..3cc41c33 100644 --- a/lib/sisu/v3/html_tune.rb +++ b/lib/sisu/v3/html_tune.rb @@ -215,7 +215,10 @@ module SiSU_HTML_Tune SiSU_HTML_Tune::Output.new(@data,@md).marshal end tuned=SiSU_HTML_Tune::Tune.new(@data,@md).output - rescue; SiSU_Errors::InfoError.new($!,$@,@md.opt.cmd,@md.fns).error + rescue + SiSU_Errors::InfoError.new($!,$@,@md.opt.cmd,@md.fns).error do + __LINE__.to_s + ':' + __FILE__ + end ensure end end |