diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-02-10 13:29:19 +0100 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2008-02-10 22:08:11 +0100 |
commit | cad39e95f8f430c4923c80744c47fca8ba257d1a (patch) | |
tree | 520b5f128474211d503b45b530ae87385969efd2 | |
parent | 4d0b0d3554bac832f3c429230b2cbb132ec8b643 (diff) |
rss plugin: append space to author when appropriate
-rw-r--r-- | data/rbot/plugins/rss.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/data/rbot/plugins/rss.rb b/data/rbot/plugins/rss.rb index cf08825f..c5466dc6 100644 --- a/data/rbot/plugins/rss.rb +++ b/data/rbot/plugins/rss.rb @@ -900,6 +900,7 @@ class RSSFeedsPlugin < Plugin line1 = "#{handle}#{date}#{author}blogged #{abt}at #{link}"
line2 = "#{handle}#{title} - #{desc}"
when 'git'
+ author << " " if author
line1 = "#{handle}#{date}#{author}commited #{title} @ #{link}"
when 'forum'
line1 = "#{handle}#{date}#{title}#{at}#{link}"
|