We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Traceback (most recent call last): File "/app/attestations.py", line 149, in <module> main() File "/app/attestations.py", line 129, in main dist_to_attestation_map = compose_attestation_mapping( ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/app/attestations.py", line 103, in compose_attestation_mapping assert_attestations_do_not_pre_exist(dist_to_attestation_map) File "/app/attestations.py", line 88, in assert_attestations_do_not_pre_exist die(error_message) File "/app/attestations.py", line 45, in die msg = msg.replace('\n', '%0A') ^^^^^^^^^^^ AttributeError: 'tuple' object has no attribute 'replace'
I've no idea how it got to this, but I've hit this error in my CI: https://github.com/dimaqq/otlp-test-data/actions/runs/13430069816/job/37519980376
The text was updated successfully, but these errors were encountered:
fix: error message is a string, not a tuple
656a511
I imagine someone refactored and moved message out int a variable, but forgot that in that case comma after argument is significant. Fixes pypa#339
Fix duplicate attestations error message to be a str, not a tuple
b223cbb
The bug was initially introduced in #315. Ref #339.
Successfully merging a pull request may close this issue.
I've no idea how it got to this, but I've hit this error in my CI:
https://github.com/dimaqq/otlp-test-data/actions/runs/13430069816/job/37519980376
The text was updated successfully, but these errors were encountered: