From 7099e54c23f80b23bdbb456921fd8ddeada485ff Mon Sep 17 00:00:00 2001 From: Jon Ciesla Date: Fri, 30 Mar 2012 11:48:34 -0500 Subject: [PATCH] Don't accept new EL-4 branches. --- scripts/process-git-requests/process-git-requests | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/process-git-requests/process-git-requests b/scripts/process-git-requests/process-git-requests index 1e8d85f..cac02f2 100755 --- a/scripts/process-git-requests/process-git-requests +++ b/scripts/process-git-requests/process-git-requests @@ -718,6 +718,8 @@ if __name__ == '__main__': # Unfortunately pkgdb can't tell us when branches are no longer accepted if 'F-14' in branches: del branches['F-14'] + if 'EL-4' in branches: + del branches['EL-4'] print "Connecting to FAS..." fas = AccountSystem(username=options.user)