diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2010-10-04 21:08:54 +0200 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2010-10-04 21:08:54 +0200 |
commit | 7e196dbdcbe22e526cf2c63671ab63a017331a84 (patch) | |
tree | 53add9caab1de2d2d2f3e7c8e6c7c7e5ccc50cd1 /data/rbot/plugins/poll.rb | |
parent | a7dc97c38bcd43ab8e1ed023db5a4aabcec978a0 (diff) |
poll: suppress warning
Diffstat (limited to 'data/rbot/plugins/poll.rb')
-rw-r--r-- | data/rbot/plugins/poll.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/rbot/plugins/poll.rb b/data/rbot/plugins/poll.rb index 79f663f1..4109321d 100644 --- a/data/rbot/plugins/poll.rb +++ b/data/rbot/plugins/poll.rb @@ -327,12 +327,12 @@ class PollPlugin < Plugin outcome << " #{poll.outcome}" end - m.reply (to_reply % { + m.reply((to_reply % { :bold => Bold, :id => poll.id, :author => poll.author, :channel => poll.channel, :started => poll.started, :end => poll.ends_at - }) + options + outcome + }) + options + outcome) end def help(plugin,topic="") |