diff options
| author | Donald Sharp <donaldsharp72@gmail.com> | 2024-11-19 09:28:32 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-19 09:28:32 -0500 |
| commit | 26b0cca95dbcf903aafdbface8f56af7476fec40 (patch) | |
| tree | bf27e2229d5fb453f2bffda50568093adc5a7d54 | |
| parent | 5bdb8d94c8de8ca9e1cb76f3c3ff9b0dea0e5982 (diff) | |
| parent | 0073c738585723a6dbdec463fb9310893788dd19 (diff) | |
Merge pull request #17453 from opensourcerouting/fix/raw_python_clippy
tools: Fix syntax raw parsing for make-foobar helper
| -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", ] |
