From 3e1c769439261a02270317128faadba24e74dc49 Mon Sep 17 00:00:00 2001 From: Jason Tibbitts Date: Wed, 25 May 2011 11:19:15 -0500 Subject: [PATCH] Remove the fixups for "f12" and "f13". We no longer accept F-12 or F-13 branches so remove the conversions from "f12" and "f13" to "F-12" and "F-13", respectively. --- scripts/process-git-requests/process-git-requests | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/process-git-requests/process-git-requests b/scripts/process-git-requests/process-git-requests index 6edbfe7..27743ff 100755 --- a/scripts/process-git-requests/process-git-requests +++ b/scripts/process-git-requests/process-git-requests @@ -277,8 +277,6 @@ def clean_branches(branches): branches = re.sub(r' +', ' ', branches) # Now make things nasty to satisfy history - branches = re.sub(r'f12', r'F-12', branches) - branches = re.sub(r'f13', r'F-13', branches) branches = re.sub(r'el4', r'EL-4', branches) branches = re.sub(r'el5', r'EL-5', branches) branches = re.sub(r'el6', r'EL-6', branches)