diff options
author | Tom Rini <trini@konsulko.com> | 2024-09-02 14:13:57 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-09-02 14:13:57 -0600 |
commit | 8c069df8dd727bf78426aaa4604750ab93732f04 (patch) | |
tree | 17ac5bea9d7200864aec9a5f531caed0a3e4e3ec /tools/patman/patchstream.py | |
parent | f0ec3e608902ca1f573e5b7017da6bc804483f55 (diff) | |
parent | 1312faac5f52d27cfb45dfe1a5a93a2944ca5c21 (diff) |
Merge tag 'v2024.10-rc4' into next
Prepare v2024.10-rc4
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') |