From e5dfc0e5dccd67c5f59c615449fc71b43e1d71f9 Mon Sep 17 00:00:00 2001 From: Kyr Shatskyy Date: Wed, 11 Feb 2026 14:30:32 +0100 Subject: [PATCH] lock/ops: missing f-prefix in f-string Signed-off-by: Kyr Shatskyy --- teuthology/lock/ops.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/teuthology/lock/ops.py b/teuthology/lock/ops.py index fb27313f3..0acc6b62e 100644 --- a/teuthology/lock/ops.py +++ b/teuthology/lock/ops.py @@ -198,7 +198,7 @@ def unlock_one_safe(name: str, owner: str, run_name: str = "", job_id: str = "") return unlock_one(name, owner, node_status["description"], node_status) if run_name: if job_id and not maybe_job.endswith(f"{run_name}/{job_id}"): - log.info("Not unlocking {name} since it is running {maybe_job}, not {run_name}/{job_id}") + log.info(f"Not unlocking {name} since it is running {maybe_job}, not {run_name}/{job_id}") return False elif not job_id and not maybe_job.endswith(run_name): log.info(f"Not unlocking {name} since it is running {maybe_job}, not {run_name}") -- 2.47.3