diff options
author | Tom Rini <trini@konsulko.com> | 2024-09-01 15:56:22 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-09-01 15:56:22 -0600 |
commit | 7fd4bfaa898156a17ee2e45ec1e417536a94ff94 (patch) | |
tree | 150cfd77c72e9b870c305df7e39739d50ad2ef91 /tools/patman/patchstream.py | |
parent | 57949a99b7bd0aa21abbde1ffa7e50e5d9e10a4e (diff) | |
parent | 4597acbd5943a53afb8aeb9595f2ea5a40e1f99f (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/patchstream.py')
-rw-r--r-- | tools/patman/patchstream.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/patman/patchstream.py b/tools/patman/patchstream.py index a09ae9c7371..4955f6aaab9 100644 --- a/tools/patman/patchstream.py +++ b/tools/patman/patchstream.py @@ -48,7 +48,7 @@ RE_TAG = re.compile('^(Tested-by|Acked-by|Reviewed-by|Patch-cc|Fixes): (.*)') RE_COMMIT = re.compile('^commit ([0-9a-f]*)$') # We detect these since checkpatch doesn't always do it -RE_SPACE_BEFORE_TAB = re.compile('^[+].* \t') +RE_SPACE_BEFORE_TAB = re.compile(r'^[+].* \t') # Match indented lines for changes RE_LEADING_WHITESPACE = re.compile(r'^\s') |