From 2774c1a68ace450ded184fd9f522c4b4d800e0fa Mon Sep 17 00:00:00 2001 From: Dustin Ingram Date: Thu, 21 Mar 2024 13:35:35 -0400 Subject: [PATCH] scope.fingerprint should be a list (#15650) --- warehouse/utils/wheel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/warehouse/utils/wheel.py b/warehouse/utils/wheel.py index bcce3cbb46a4..6bc71c8d8045 100644 --- a/warehouse/utils/wheel.py +++ b/warehouse/utils/wheel.py @@ -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}."