diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2010-08-26 17:34:04 +0200 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2010-08-26 17:34:04 +0200 |
commit | 1df1f3ac9469b9244302de71e302e2b286383560 (patch) | |
tree | d90d660e885b729379da82cf358739ffc24b1131 /data/rbot/plugins | |
parent | ea631e1b17c124dc6a990df13414c51e6e0610b6 (diff) |
digg: fix message when news could not be retrieved
Diffstat (limited to 'data/rbot/plugins')
-rw-r--r-- | data/rbot/plugins/digg.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/digg.rb b/data/rbot/plugins/digg.rb index 25962919..1e00fabc 100644 --- a/data/rbot/plugins/digg.rb +++ b/data/rbot/plugins/digg.rb @@ -15,7 +15,7 @@ class DiggPlugin < Plugin debug "max is #{max}" xml = @bot.httputil.get('http://digg.com/rss/index.xml') unless xml - m.reply "digg news parse failed" + m.reply "digg news unavailable" return end doc = Document.new xml |