diff options
author | Donatas Abraitis <donatas@opensourcerouting.org> | 2024-11-18 10:04:27 +0100 |
---|---|---|
committer | Donatas Abraitis <donatas@opensourcerouting.org> | 2024-11-18 10:04:27 +0100 |
commit | 0073c738585723a6dbdec463fb9310893788dd19 (patch) | |
tree | 940c5c16e3ec34234647e29e177f1db57106eec4 /python | |
parent | Merge pull request #17451 from opensourcerouting/fix/bgp_optimizations (diff) | |
download | frr-0073c738585723a6dbdec463fb9310893788dd19.tar.xz frr-0073c738585723a6dbdec463fb9310893788dd19.zip |
tools: Fix syntax raw parsing for make-foobar helper
96 38.93 config.status: creating Makefile
96 39.48 /src/python/makefile.py:55: SyntaxWarning: invalid escape sequence '\s'
96 39.48 "^#\s*include.*_clippy.c",
Signed-off-by: Donatas Abraitis <donatas@opensourcerouting.org>
Diffstat (limited to 'python')
-rw-r--r-- | python/makefile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/makefile.py b/python/makefile.py index 45f032296..45db841c7 100644 --- a/python/makefile.py +++ b/python/makefile.py @@ -52,7 +52,7 @@ if args.dev_build: "grep", "-l", "-P", - "^#\s*include.*_clippy.c", + r"^#\s*include.*_clippy.c", "--", "**.c", ] |