diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-11-04 23:06:37 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-11-04 23:06:37 +0000 |
commit | 2f028b52446362da2e1aa9173fa938c700a6a0cf (patch) | |
tree | e2cc5864bf369409f25f9a670d2af9312e37f722 /data/rbot/plugins/factoids.rb | |
parent | de9ddb8a7eb436c0cb8db81289373dc169f484ba (diff) |
factoids plugin: no need to prepend 'learnt' to metadata
Diffstat (limited to 'data/rbot/plugins/factoids.rb')
-rw-r--r-- | data/rbot/plugins/factoids.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/factoids.rb b/data/rbot/plugins/factoids.rb index f9c64eba..e50cc73d 100644 --- a/data/rbot/plugins/factoids.rb +++ b/data/rbot/plugins/factoids.rb @@ -38,7 +38,7 @@ class FactoidsPlugin < Plugin metadata << _("in %{where}" % @hash) end unless metadata.empty? - meta << _(" [learnt %{data}]" % {:data => metadata.join(" ")}) + meta << _(" [%{data}]" % {:data => metadata.join(" ")}) end return fact+meta end |