From 42045b5df29519cb4307ac433c6fd0d4ba5f157b Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Sun, 8 Apr 2007 10:26:50 +0000 Subject: ircbot: do not use debug in sendmsg() because it breaks script. script plugin: handle all Exceptions. --- data/rbot/plugins/script.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'data/rbot/plugins') diff --git a/data/rbot/plugins/script.rb b/data/rbot/plugins/script.rb index 1b695868..29afa20a 100644 --- a/data/rbot/plugins/script.rb +++ b/data/rbot/plugins/script.rb @@ -60,7 +60,7 @@ class ScriptPlugin < Plugin begin eval( code ) - rescue => e + rescue Exception => e m.reply( "Script '#{name}' crapped out :(" ) m.reply( e.inspect ) end @@ -75,7 +75,7 @@ class ScriptPlugin < Plugin # TODO allow different safe levels for different botusers begin eval( code ) - rescue => e + rescue Exception => e m.reply( "Script '#{name}' crapped out :(" ) m.reply( e.inspect ) end @@ -89,7 +89,7 @@ class ScriptPlugin < Plugin # TODO allow different safe levels for different botusers begin m.reply eval( code ).to_s - rescue => e + rescue Exception => e m.reply( "Script '#{name}' crapped out :(" ) m.reply( e.inspect ) end -- cgit v1.2.3