mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-02 04:10:17 +01:00
contrib: fix invalid escape sequence in "find-backports"
Fixes:57cfa5daf9('contrib: add "find-backports" script') (cherry picked from commit1d241f5295)
This commit is contained in:
parent
7b00d41233
commit
d42f89b8ca
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