Skip to content

Commit

Permalink
Fix invalid escape sequence warning
Browse files Browse the repository at this point in the history
  • Loading branch information
SteffenL committed Feb 14, 2024
1 parent 4cbe111 commit 02e34a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run-clang-format.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand Down

0 comments on commit 02e34a5

Please sign in to comment.