patchupdate.py: Remove support for deprecated Fixes: format.

This commit is contained in:
Sebastian Lackner 2015-11-15 05:31:46 +01:00
parent 0c787e6a09
commit 6539aec608

View File

@ -295,11 +295,6 @@ def read_patchset(revision = None):
patch.categories.append(val)
elif key == "fixes":
r = re.match("^[0-9]+$", val)
if r:
bugid = int(val)
patch.fixes.append((bugid, None))
continue
r = re.match("^\\[ *([0-9]+) *\\](.*)$", val)
if r:
bugid = int(r.group(1))