diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2024-11-18 11:04:27 +0200 |
|---|---|---|
| committer | Donatas Abraitis <donatas@opensourcerouting.org> | 2024-11-18 11:04:27 +0200 |
| commit | 0073c738585723a6dbdec463fb9310893788dd19 (patch) | |
| tree | 940c5c16e3ec34234647e29e177f1db57106eec4 /python/makefile.py | |
| parent | 724624a35c043ca498235cd63acc937598fb3d8d (diff) | |
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/makefile.py')
| -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 45f032296f..45db841c73 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", ] |
