diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2006-07-26 23:15:06 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2006-07-26 23:15:06 +0000 |
commit | 8bf39f3bca63676117b8174ecb0d394507940570 (patch) | |
tree | 807f0503eb1a80a5828174af596adebc8dcece77 /data/rbot | |
parent | 8aae94a93dd5231a2f910e9f984f56306aea42af (diff) |
Small cosmetic fix for trac output of non-changelog entries in RSS plugin
Diffstat (limited to 'data/rbot')
-rw-r--r-- | data/rbot/plugins/rss.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/rbot/plugins/rss.rb b/data/rbot/plugins/rss.rb index 23f9f7e5..1bc9b16e 100644 --- a/data/rbot/plugins/rss.rb +++ b/data/rbot/plugins/rss.rb @@ -429,7 +429,7 @@ class RSSFeedsPlugin < Plugin when 'trac'
@bot.say loc, "#{handle}#{date}#{title} @ #{link}"
unless item.title =~ /^Changeset \[(\d+)\]/
- @bot.say loc, "#{handle}#{desc}"
+ @bot.say loc, "#{handle}#{date}#{desc}"
end
else
@bot.say loc, "#{handle}#{date}#{title}#{' @ ' if item.title && item.link}#{link}"
|