diff --git a/debian/tools/patchupdate.py b/debian/tools/patchupdate.py index 253eb9be..92a48d61 100755 --- a/debian/tools/patchupdate.py +++ b/debian/tools/patchupdate.py @@ -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))