Skip to content

Commit b223cbb

Browse files
committed
Fix duplicate attestations error message to be a str, not a tuple
The bug was initially introduced in #315. Ref #339.
1 parent 20d40f6 commit b223cbb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

attestations.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ def assert_attestations_do_not_pre_exist(
8282

8383
existing_attestations_list = '\n'.join(map(str, existing_attestations))
8484
error_message = (
85-
'The following distributions already have publish attestations:'
86-
f'{existing_attestations_list}',
85+
'The following distributions already have publish attestations: '
86+
f'{existing_attestations_list}'
8787
)
8888
die(error_message)
8989

0 commit comments

Comments
 (0)