summaryrefslogtreecommitdiff
path: root/tools/patman/commit.py
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2024-09-01 15:56:22 -0600
committerTom Rini <trini@konsulko.com>2024-09-01 15:56:22 -0600
commit7fd4bfaa898156a17ee2e45ec1e417536a94ff94 (patch)
tree150cfd77c72e9b870c305df7e39739d50ad2ef91 /tools/patman/commit.py
parent57949a99b7bd0aa21abbde1ffa7e50e5d9e10a4e (diff)
parent4597acbd5943a53afb8aeb9595f2ea5a40e1f99f (diff)
Merge tag 'dm-pull-1sep24' of https://gitlab.denx.de/u-boot/custodians/u-boot-dm
Minor fixes for qconfig and patman
Diffstat (limited to 'tools/patman/commit.py')
-rw-r--r--tools/patman/commit.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/patman/commit.py b/tools/patman/commit.py
index 684225c0e60..ce37a3d95eb 100644
--- a/tools/patman/commit.py
+++ b/tools/patman/commit.py
@@ -6,7 +6,7 @@ import collections
import re
# Separates a tag: at the beginning of the subject from the rest of it
-re_subject_tag = re.compile('([^:\s]*):\s*(.*)')
+re_subject_tag = re.compile(r'([^:\s]*):\s*(.*)')
class Commit:
"""Holds information about a single commit/patch in the series.