From 02e34a55200883374eb03b2a31b326c4ef56397b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steffen=20Andr=C3=A9=20Langnes?= Date: Wed, 14 Feb 2024 21:02:08 +0900 Subject: [PATCH] Fix invalid escape sequence warning --- run-clang-format.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-clang-format.py b/run-clang-format.py index 84359b3..94f1681 100755 --- a/run-clang-format.py +++ b/run-clang-format.py @@ -246,7 +246,7 @@ def normalize_paths(paths): """ Normalizes backward slashes in each path in list of paths Ex) - "features/Test\ Features/feature.cpp" => "features/Test Features/feature.cpp" + "features/Test\\ Features/feature.cpp" => "features/Test Features/feature.cpp" """ return [path.replace("\\","") for path in paths]