From b0e668fa4f818151b1348d8df2f48b3251d1a5f7 Mon Sep 17 00:00:00 2001 From: Jeff Dickey <216188+jdx@users.noreply.github.com> Date: Mon, 11 Dec 2023 21:46:15 -0600 Subject: [PATCH] python: logging --- src/plugins/core/python.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/core/python.rs b/src/plugins/core/python.rs index beffc66b8..48d8f9724 100644 --- a/src/plugins/core/python.rs +++ b/src/plugins/core/python.rs @@ -179,7 +179,7 @@ impl Plugin for PythonPlugin { if matches!(&ctx.tv.request, ToolVersionRequest::Ref(..)) { return Err(eyre!("Ref versions not supported for python")); } - ctx.pr.set_message("running python-build"); + ctx.pr.set_message("Running python-build"); let mut cmd = CmdLineRunner::new(&ctx.config.settings, self.python_build_bin()) .with_pr(&ctx.pr) .arg(ctx.tv.version.as_str())