diff --git a/scripts/process-git-requests/process-git-requests b/scripts/process-git-requests/process-git-requests index ba12012..fba7b81 100755 --- a/scripts/process-git-requests/process-git-requests +++ b/scripts/process-git-requests/process-git-requests @@ -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')