Force-remove F-13 from valid branch list.

Since f15 is out, we no longer allow F-13 branches.  Remove it from the
valid list.
This commit is contained in:
Jason Tibbitts 2011-05-25 11:24:55 -05:00
parent 3e1c769439
commit d1f6a2f647

View file

@ -706,6 +706,13 @@ if __name__ == '__main__':
print "Getting valid branches...."
for i in pkgdb.get_collection_list(eol=False):
branches[i[0]['branchname']] = 1
# Unfortunately pkgdb can't tell us when branches are no longer accepted
print branches
if 'F-13' in branches:
del branches['F-13']
print branches
print "Connecting to FAS..."
fas = AccountSystem(username=options.user)
print "Done."