Skip to content

Commit d3c7f85

Browse files
authored
Merge pull request #67 from SteffenL/fix-warning-invalid-escape-sequence
Fix invalid escape sequence warning
2 parents 4cbe111 + 02e34a5 commit d3c7f85

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)