Skip to content

Commit

Permalink
build.hooks: better collision error message in make-venv (copy/pastab…
Browse files Browse the repository at this point in the history
…le filenames)
  • Loading branch information
TyberiusPrime authored Dec 7, 2024
1 parent 6aadf21 commit e239399
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/hooks/make-venv/make_venv.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class FileCollisionError(Exception):
def __init__(self, inputs: list[Path]):
err = f"""Two or more packages are trying to provide the same file with different contents
Files: {inputs}"""
Files: {' '.join((str(x) for x in inputs))}"""
super().__init__(err)


Expand Down

0 comments on commit e239399

Please sign in to comment.