Skip to content

Commit

Permalink
scope.fingerprint should be a list (#15650)
Browse files Browse the repository at this point in the history
  • Loading branch information
di authored Mar 21, 2024
1 parent fc6ad77 commit 2774c1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion warehouse/utils/wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def filename_to_pretty_tags(filename: str) -> list[str]:
pretty_tags.add(f"CPython {version}")
else:
with sentry_sdk.push_scope() as scope:
scope.fingerprint = str(tag)
scope.fingerprint = [str(tag)]
sentry_sdk.capture_message(
f"wheel has unrecognized interpreter tag: {tag}. "
f"Filename: {filename}."
Expand Down

0 comments on commit 2774c1a

Please sign in to comment.