We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f75b58c + 3a00db0 commit 551a10cCopy full SHA for 551a10c
1 file changed
tests/repository_simulator.py
@@ -397,5 +397,6 @@ def write(self) -> None:
397
f.write(self.fetch_metadata(role))
398
399
for role in self.md_delegates:
400
- with open(os.path.join(dest_dir, f"{role}.json"), "wb") as f:
+ quoted_role = parse.quote(role, "")
401
+ with open(os.path.join(dest_dir, f"{quoted_role}.json"), "wb") as f:
402
0 commit comments