aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin H. Johnson <robbat2@gentoo.org>2012-02-20 01:39:50 +0000
committerRobin H. Johnson <robbat2@gentoo.org>2012-02-20 01:39:50 +0000
commit9ddacda7afd6f74801c2ab07121e39fff623f083 (patch)
treee8f2d790245c0a63d9a45650c89c45443937253d
parentNo-herd should removed from tree. (diff)
downloadrbot-gentoo-9ddacda7afd6f74801c2ab07121e39fff623f083.tar.gz
rbot-gentoo-9ddacda7afd6f74801c2ab07121e39fff623f083.tar.bz2
rbot-gentoo-9ddacda7afd6f74801c2ab07121e39fff623f083.zip
Do not introduce our own false no-herd.
-rw-r--r--gentoo-scripts/metadata.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/gentoo-scripts/metadata.py b/gentoo-scripts/metadata.py
index ebd8721..b49bbf2 100644
--- a/gentoo-scripts/metadata.py
+++ b/gentoo-scripts/metadata.py
@@ -60,9 +60,7 @@ def check_metadata(full_package):
herds.append(herd.text)
else:
herds.append(red('bogus empty herd'))
- if not herds:
- ret.append(darkgreen(" Herd: no-herd"))
- else:
+ if herds:
ret.append(darkgreen(" Herd: ") + ", ".join(herds))
maintainers = []