From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from ms.lwn.net (ms.lwn.net [45.79.88.28]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id B8CED37D13E; Sun, 22 Mar 2026 20:55:44 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=45.79.88.28 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774212945; cv=none; b=WuJ+eBCKRr7yzNi9Oev4AI8G3fNuo1bwdoN3j0qUe4Ha4OwqFUpnqwPfAPKSw55lIoaKG1nwcb3wWhmBJWzk9xWVh6299M4apVZOkOJIdJOPRh2psYLMMKEsyXUTxySEddTDHGRo8D4TsUPjtFLd+l81H1yFknkoO5QXDfovTgs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774212945; c=relaxed/simple; bh=IbE8kkvajd51Ibyhpa8/n3i1gb1StWjUlN3RkdaNvP8=; h=From:To:Cc:Subject:In-Reply-To:References:Date:Message-ID: MIME-Version:Content-Type; b=gnvMRbKSUNU+OlAPAahrOVhW3XtmupXBCX6qhDMgDJLK0hLzmcDcXuX2pxes0+ayyNZKDWLCXK/Qk1Cj1L1tmbjvDQkLJJI6UTuWnzHwTX0FqrErQbJZ9hCuDPYZJX3CnuRqkcAN0TdropA4moHpSa588vAy2uaJzt4A+tC6d6k= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lwn.net; spf=pass smtp.mailfrom=lwn.net; dkim=pass (2048-bit key) header.d=lwn.net header.i=@lwn.net header.b=WY/tF6tN; arc=none smtp.client-ip=45.79.88.28 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=lwn.net Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=lwn.net Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=lwn.net header.i=@lwn.net header.b="WY/tF6tN" DKIM-Filter: OpenDKIM Filter v2.11.0 ms.lwn.net 0E832411EA DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=lwn.net; s=20201203; t=1774212944; bh=7tYXKxUzJE3bdobzywM4oKr0jM4HKS6+lTz1moorohU=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=WY/tF6tNtZyM8o+N/vKhYYh9tZHXC+Qg1Fr4yicsbLYrPq7jP1Co3VOhjXjVskEmC NJkiAlddLuTO4FyaBaMxukC2IJdqORM9x1bBlfjzlarijITP+BtiAmR91T3ZS9mX3Z LMxYsiSdnQSWbAHhcBQI2YHUyv0j12yqDYwKuyCcIEFPx3wxyjVz4VvnQQaSkTpV1Z ss2WAWWgCSe4T/hz/qTqh3kSL5L0F5eFS5X+ckSg1DpN4W/TEoaM0Jy1/+rWuN659J zcDfBtEooPVQguCQmdV5/N0wp3imOhS1zphc1jIgFQdrutcD6GU7K6euaxwRklF+xx gEV/XWXhYv6jA== Received: from localhost (unknown [IPv6:2601:280:4600:27b::1fe]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (prime256v1) server-signature ECDSA (prime256v1) server-digest SHA256) (No client certificate requested) by ms.lwn.net (Postfix) with ESMTPSA id 0E832411EA; Sun, 22 Mar 2026 20:55:43 +0000 (UTC) From: Jonathan Corbet To: LIU Haoyang , Mauro Carvalho Chehab , Shuah Khan , Dongliang Mu , Yanteng Si Cc: LIU Haoyang , linux-doc@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] tools/docs/checktransupdate.py: fix missing prefix in f-string In-Reply-To: <20260308104135.9037-1-tttturtleruss@gmail.com> References: <20260308104135.9037-1-tttturtleruss@gmail.com> Date: Sun, 22 Mar 2026 14:55:43 -0600 Message-ID: <87a4vzd1o0.fsf@trenco.lwn.net> Precedence: bulk X-Mailing-List: linux-doc@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain LIU Haoyang writes: > Add a f prefix to f-string in checktransupdate.py. > > Fixes: 63e96ce050e5 ("scripts: fix all issues reported by pylint") > Signed-off-by: LIU Haoyang > --- > 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 Applied, thanks. jon