diff options
author | hut <hut@lavabit.com> | 2009-06-12 18:52:35 +0200 |
---|---|---|
committer | hut <hut@lavabit.com> | 2009-06-12 18:52:35 +0200 |
commit | 87e935f7fe07430792e4699495a5477b38736567 (patch) | |
tree | e47726573f9c457a5c7b4e37db8a77bf784d58cb /code/fm/fm.rb | |
parent | 46069e7ee321ad035c5b1964026aa34fb5c06974 (diff) | |
download | ranger-87e935f7fe07430792e4699495a5477b38736567.tar.gz |
uncommented exception handler in fm.rb
it was one cause of the "evil bug" eariler, seems to work now.
Diffstat (limited to 'code/fm/fm.rb')
-rw-r--r-- | code/fm/fm.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/code/fm/fm.rb b/code/fm/fm.rb index 6d0cc239..e5370c20 100644 --- a/code/fm/fm.rb +++ b/code/fm/fm.rb @@ -133,9 +133,9 @@ module Fm draw() rescue Interrupt on_interrupt -# rescue Exception -# log($!) -# log(caller) + rescue Exception + log($!) + log(caller) end begin |