summaryrefslogtreecommitdiff
path: root/data/rbot/plugins/rss.rb
diff options
context:
space:
mode:
authorGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2007-04-12 23:03:08 +0000
committerGiuseppe Bilotta <giuseppe.bilotta@gmail.com>2007-04-12 23:03:08 +0000
commit16cef9911ffec52af6b4bbb6a15062d123ce0eb8 (patch)
treea5eef3a99c44dbb96f630b61396df7750f068769 /data/rbot/plugins/rss.rb
parent700865086123f58833f7d83033e0a1ede1d40e0f (diff)
rss plugin: catch all errors when stopping watches
Diffstat (limited to 'data/rbot/plugins/rss.rb')
-rw-r--r--data/rbot/plugins/rss.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/rss.rb b/data/rbot/plugins/rss.rb
index fa777739..22b56295 100644
--- a/data/rbot/plugins/rss.rb
+++ b/data/rbot/plugins/rss.rb
@@ -337,7 +337,7 @@ class RSSFeedsPlugin < Plugin
debug "Stopping watch #{handle}"
@bot.timer.remove(@watch[handle])
@watch.delete(handle)
- rescue => e
+ rescue Exception => e
report_problem("Failed to stop watch for #{handle}", e, nil)
end
end