Invalidate 'no-herd', there will be no special herds.
authorMichał Górny <mgorny@gentoo.org>
Fri, 23 Sep 2011 09:15:35 +0000 (11:15 +0200)
committerZac Medico <zmedico@gentoo.org>
Sat, 24 Sep 2011 19:28:00 +0000 (12:28 -0700)
pym/repoman/herdbase.py

index 64b59e636ee1fd327158d80836c82a3b49824b40..8ce36a704a5baa5994c715d16b9fd4b28a5a185f 100644 (file)
@@ -19,8 +19,6 @@ __all__ = [
        "make_herd_base"
 ]
 
-_SPECIAL_HERDS = set(('no-herd',))
-
 def _make_email(nick_name):
        if not nick_name.endswith('@gentoo.org'):
                nick_name = nick_name + '@gentoo.org'
@@ -33,8 +31,6 @@ class HerdBase(object):
                self.all_emails = all_emails
 
        def known_herd(self, herd_name):
-               if herd_name in _SPECIAL_HERDS:
-                       return True
                return herd_name in self.herd_to_emails
 
        def known_maintainer(self, nick_name):