diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-09-18 12:06:48 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-09-18 12:06:48 +0000 |
commit | 2220250c49c13c45f56f4336a56fbea54bb74fc9 (patch) | |
tree | 599316e7c0bee91910667dbdbbb293198a17dbfb | |
parent | 5cb2d2a78c610291570ce9ffae035e446e030b4b (diff) |
dict plugin: demauro can actually have spaces in the leftmost part of the entry
-rw-r--r-- | data/rbot/plugins/dict.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/dict.rb b/data/rbot/plugins/dict.rb index dc52dbd9..7db8c004 100644 --- a/data/rbot/plugins/dict.rb +++ b/data/rbot/plugins/dict.rb @@ -93,7 +93,7 @@ class DictPlugin < Plugin return unless first_pars > 0
Utils.get_first_pars urls, first_pars, :message => m,
- :strip => /^\S+\s+-\s+/
+ :strip => /^.+?\s+-\s+/
end
|