commit: 2d49aaf8c477f77c5d0d820fffe8bd74088bb9b3
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 26 15:40:09 2016 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Jan 26 15:45:11 2016 +0000
URL: https://gitweb.gentoo.org/proj/rbot-gentoo.git/commit/?id=2d49aaf8
!meta: Stop printing herds
gentoo-data.rb | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/gentoo-data.rb b/gentoo-data.rb
index d99c7c6..0be1177 100644
--- a/gentoo-data.rb
+++ b/gentoo-data.rb
@@ -89,10 +89,8 @@ class GentooPlugin < Plugin
# TODO: handle description?
maints = pkg['maintainers'].map{|x|
x['email'].chomp('@gentoo.org')}.join(', ')
maints = '(none)' if maints.empty?
- herds = pkg['herds'].join(', ')
- herds = '(none)' if herds.empty?
- m.reply "#{pkg['atom']}; herds: #{herds}; maintainers: #{maints}"
+ m.reply "#{pkg['atom']}; maintainers: #{maints}"
end
def meta(m, params)