aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2016-01-26 16:40:09 +0100
committerMichał Górny <mgorny@gentoo.org>2016-01-26 16:45:11 +0100
commit2d49aaf8c477f77c5d0d820fffe8bd74088bb9b3 (patch)
tree5639bef269f99742a9ff9d0159b6d1b25b2d9fba
parent!meta -v: Disable herd expansion (diff)
downloadrbot-gentoo-2d49aaf8c477f77c5d0d820fffe8bd74088bb9b3.tar.gz
rbot-gentoo-2d49aaf8c477f77c5d0d820fffe8bd74088bb9b3.tar.bz2
rbot-gentoo-2d49aaf8c477f77c5d0d820fffe8bd74088bb9b3.zip
!meta: Stop printing herds
-rw-r--r--gentoo-data.rb4
1 files changed, 1 insertions, 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)