mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-29 06:50:10 +01:00
contrib: fix invalid escape sequence in "find-backports"
Fixes: 57cfa5daf9 ('contrib: add "find-backports" script')
This commit is contained in:
parent
1054d3bce0
commit
1d241f5295
1 changed files with 1 additions and 1 deletions
|
|
@ -221,7 +221,7 @@ def git_ref_commit_body_get_cherry_picked_one(ref):
|
|||
body = git_ref_commit_body(ref)
|
||||
result = None
|
||||
for r in [
|
||||
re_bin("\(cherry picked from commit ([0-9a-z]+)\)"),
|
||||
re_bin("\\(cherry picked from commit ([0-9a-z]+)\\)"),
|
||||
re_bin("\\bIgnore-Backport: *([0-9a-z]+)\\b"),
|
||||
]:
|
||||
for mo in re.finditer(r, body):
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue