From: Kyr Shatskyy Date: Wed, 11 Feb 2026 13:30:32 +0000 (+0100) Subject: lock/ops: missing f-prefix in f-string X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=e5dfc0e5dccd67c5f59c615449fc71b43e1d71f9;p=teuthology.git lock/ops: missing f-prefix in f-string Signed-off-by: Kyr Shatskyy --- 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}")