Re: [PATCH] tools/docs/checktransupdate.py: fix missing prefix in f-string
From: Dongliang Mu
Date: Sun Mar 08 2026 - 23:51:40 EST
On 3/8/26 6:41 PM, LIU Haoyang wrote:
Add a f prefix to f-string in checktransupdate.py.
Fixes: 63e96ce050e5 ("scripts: fix all issues reported by pylint")
Signed-off-by: LIU Haoyang <tttturtleruss@xxxxxxxxx>
Hi Haoyang,
could you help fix all the issues mentioned by pylint? There is another issue reported by pylint.
tools/docs/checktransupdate.py:79:4: C0103: Variable name "HASH" doesn't conform to snake_case naming style (invalid-name)
Dongliang Mu
---
tools/docs/checktransupdate.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/docs/checktransupdate.py b/tools/docs/checktransupdate.py
index e894652369a5..bf735562aeeb 100755
--- a/tools/docs/checktransupdate.py
+++ b/tools/docs/checktransupdate.py
@@ -131,7 +131,7 @@ def check_per_file(file_path):
opath = get_origin_path(file_path)
if not os.path.isfile(opath):
- logging.error("Cannot find the origin path for {file_path}")
+ logging.error(f"Cannot find the origin path for {file_path}")
return
o_from_head = get_latest_commit_from(opath, "HEAD")