From 4a6eef467583d87182e53ba526591928e7d02804 Mon Sep 17 00:00:00 2001 From: Brenda Anderson Date: Sun, 24 Dec 2023 13:33:36 +1300 Subject: [PATCH 1/2] clarify check50 browser message Change wording to make it clearer that the URL may give more detailed results. --- check50/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/check50/__main__.py b/check50/__main__.py index b4d6c2c..2a4eaa9 100644 --- a/check50/__main__.py +++ b/check50/__main__.py @@ -417,7 +417,7 @@ def main(): else: url = f"https://submit.cs50.io/check50/{tag_hash}" - termcolor.cprint(_("To see the results in your browser go to {}").format(url), "white", attrs=["bold"]) + termcolor.cprint(_("To see more detailed results go to {}").format(url), "white", attrs=["bold"]) sys.exit(should_fail(results)) From 92644b5b72d69e903cfd24a7ee025aa874bae452 Mon Sep 17 00:00:00 2001 From: Brenda Anderson Date: Sun, 24 Dec 2023 13:35:08 +1300 Subject: [PATCH 2/2] Update setup.py update version --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a374029..550225f 100644 --- a/setup.py +++ b/setup.py @@ -30,6 +30,6 @@ "console_scripts": ["check50=check50.__main__:main"] }, url="https://github.com/cs50/check50", - version="3.3.10", + version="3.3.11", include_package_data=True )