Skip to content

Commit

Permalink
update patch workaround - 2
Browse files Browse the repository at this point in the history
  • Loading branch information
ric-evans committed May 31, 2024
1 parent f585f72 commit d7da7d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_pyproject_toml_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
PATCH_WITHOUT_TAG_WORKAROUND = [
chr(i)
for i in range(32, 127)
if chr(i) not in ['"', ","] # else upsets toml syntax
if chr(i) not in ['"', ",", "\\"] # else upsets toml syntax
]

VANILLA_PROJECT_KEYVALS = {
Expand Down

0 comments on commit d7da7d1

Please sign in to comment.