Skip to content

Commit 656a511

Browse files
authored
fix: error message is a string, not a tuple
I imagine someone refactored and moved message out int a variable, but forgot that in that case comma after argument is significant. Fixes #339
1 parent 76f52bc commit 656a511

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

attestations.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def assert_attestations_do_not_pre_exist(
8383
existing_attestations_list = '\n'.join(map(str, existing_attestations))
8484
error_message = (
8585
'The following distributions already have publish attestations:'
86-
f'{existing_attestations_list}',
86+
f'{existing_attestations_list}'
8787
)
8888
die(error_message)
8989

0 commit comments

Comments
 (0)