Skip to content

Commit 0073c73

Browse files
committed
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 <[email protected]>
1 parent 724624a commit 0073c73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/makefile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
"grep",
5353
"-l",
5454
"-P",
55-
"^#\s*include.*_clippy.c",
55+
r"^#\s*include.*_clippy.c",
5656
"--",
5757
"**.c",
5858
]

0 commit comments

Comments
 (0)