From 793e2f0604faa81fd8764a66389b44559a753772 Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Mon, 7 Jul 2008 23:38:01 +0200 Subject: spell plugin: it's spell.path, not spell.program --- data/rbot/plugins/spell.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'data') diff --git a/data/rbot/plugins/spell.rb b/data/rbot/plugins/spell.rb index 5c98430b..ba5cfc19 100644 --- a/data/rbot/plugins/spell.rb +++ b/data/rbot/plugins/spell.rb @@ -9,7 +9,7 @@ class SpellPlugin < Plugin :desc => _('Path to the program to use to check spelling')) Config.register Config::StringValue.new('spell.command_line', :default => '%s -a -S', - :desc => _('Command line used to call the spell.program. Use %s as a placeholder for the executable name')) + :desc => _('Command line used to call the spell.path. Use %s as a placeholder for the executable name')) def help(plugin, topic="") _("spell => check spelling of , suggest alternatives") @@ -21,7 +21,7 @@ class SpellPlugin < Plugin end begin - IO.popen(@bot.config['spell.command_line'] % @bot.config['spell.program'], "w+") { |p| + IO.popen(@bot.config['spell.command_line'] % @bot.config['spell.path'], "w+") { |p| p.puts m.params p.close_write p.each_line { |l| @@ -39,11 +39,11 @@ class SpellPlugin < Plugin } } rescue - m.reply(_("couldn't exec %{prog} :(") % {:prog => @bot.config['spell.program']}) + m.reply(_("couldn't exec %{prog} :(") % {:prog => @bot.config['spell.path']}) return end m.reply(_("something odd happened while checking %{word} with %{prog}") % { - :word => m.params, :prog => @bot.config['spell.program'] + :word => m.params, :prog => @bot.config['spell.path'] }) end end -- cgit v1.2.3