diff options
author | Tom Gilbert <tom@linuxbrit.co.uk> | 2005-07-16 01:18:13 +0000 |
---|---|---|
committer | Tom Gilbert <tom@linuxbrit.co.uk> | 2005-07-16 01:18:13 +0000 |
commit | a08b4def5c276df964ae2a8d9c3f661593d757e6 (patch) | |
tree | cd563b11ab095bd364036d14bc28fb5fb4c065a8 /rbot/plugins/nslookup.rb | |
parent | 71e16adb8a62a78fc1e8cdcc6776b6cd84fbe758 (diff) |
various fixes by me, plus most of Rene's patch (#1).
Diffstat (limited to 'rbot/plugins/nslookup.rb')
-rw-r--r-- | rbot/plugins/nslookup.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rbot/plugins/nslookup.rb b/rbot/plugins/nslookup.rb index a68f0ee8..92da1ba7 100644 --- a/rbot/plugins/nslookup.rb +++ b/rbot/plugins/nslookup.rb @@ -38,7 +38,7 @@ class DnsPlugin < Plugin rescue StandardError => err m.reply "#{m.params}: not found" end - elsif(m.params =~ /^(\w|\.)+$/) + elsif(m.params =~ /^\S+$/) begin a = getaddresses(m.params) m.reply m.params + ": " + a.join(", ") |