Skip to content

Commit 02e34a5

Browse files
committed
Fix invalid escape sequence warning
1 parent 4cbe111 commit 02e34a5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run-clang-format.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ def normalize_paths(paths):
246246
"""
247247
Normalizes backward slashes in each path in list of paths
248248
Ex)
249-
"features/Test\ Features/feature.cpp" => "features/Test Features/feature.cpp"
249+
"features/Test\\ Features/feature.cpp" => "features/Test Features/feature.cpp"
250250
"""
251251
return [path.replace("\\","") for path in paths]
252252

0 commit comments

Comments
 (0)