mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2024-11-21 16:46:54 -08:00
patchupdate.py: Remove support for deprecated Fixes: format.
This commit is contained in:
parent
0c787e6a09
commit
6539aec608
5
debian/tools/patchupdate.py
vendored
5
debian/tools/patchupdate.py
vendored
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user