From 0007f22f7af933c9f4049814abcfd8910a18d767 Mon Sep 17 00:00:00 2001 From: "Matthew W. Thompson" Date: Fri, 15 Dec 2023 10:13:30 -0600 Subject: [PATCH] Made traceback in version check failure more verbose --- source/_ext/cookbook/github.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/_ext/cookbook/github.py b/source/_ext/cookbook/github.py index b01851e6f..1498bce49 100644 --- a/source/_ext/cookbook/github.py +++ b/source/_ext/cookbook/github.py @@ -82,5 +82,6 @@ def get_tag_matching_installed_version(repo: str) -> str: return version else: raise ValueError( - f"Could not find tag for version {version}; found tags {tagnames}" + f"Could not find tag for version {version} of repo {repo}; " + f"found tags {tagnames}" )