Remove bad_reviewers stuff

This commit is contained in:
Jason Tibbitts 2012-06-13 21:07:51 -05:00
parent f5f479719d
commit 26f7b778a1

View file

@ -51,9 +51,6 @@ epel_ok = ['abompard', 'athimm', 'corsepiu', 'ecik', 'faucamp', 'konradm',
epel_ok_comaint = ['alexlan', 'guidograzioli', 'jwrdegoede', 'kkofler',
'mebourne', 'overholt', 'pgordon', 'rishi', 'snirkel']
# A hand-maintained list of reviewers who have done poor reviews in the past
bad_reviewers = ['rnovacek@redhat.com']
PAGER = os.environ.get('PAGER') or '/usr/bin/less'
EDITOR = os.environ.get('EDITOR') or '/bin/vi'
@ -480,9 +477,6 @@ def process_new_request(bug, comment, allcomments, firstfound, pkgdb, fas, branc
if bug.assigned_to == 'nobody@fedoraproject.org':
warnings.append("WARNING: Ticket is not assigned to anyone.")
warned = True
if bug.assigned_to in bad_reviewers:
warnings.append("WARNING: Reviewer %s has done poor reviews in the past; please check." % bug.assigned_to)
warned = True
# This is an unpleasant hack
flags = bug.__getattr__('flagtypes.name')