Re: [PATCH 1/1] dtoc: avoid invalid escape sequence '\s'

2024-03-01 Thread Tom Rini
On Tue, Feb 27, 2024 at 10:51:38PM +0100, Heinrich Schuchardt wrote: > \s is not a valid escape sequence in strings. > Mark regular expressions with r''. > > Signed-off-by: Heinrich Schuchardt Applied to u-boot/master, thanks! -- Tom signature.asc Description: PGP signature

[PATCH 1/1] dtoc: avoid invalid escape sequence '\s'

2024-02-27 Thread Heinrich Schuchardt
\s is not a valid escape sequence in strings. Mark regular expressions with r''. Signed-off-by: Heinrich Schuchardt --- tools/dtoc/src_scan.py | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/dtoc/src_scan.py b/tools/dtoc/src_scan.py index 3bef59d616..2437200a42