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.
This commit is contained in:
Jason Tibbitts 2011-05-25 11:19:15 -05:00
parent e0a0d2639e
commit 3e1c769439

View file

@ -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)