From nobody Thu Oct 2 13:03:45 2025 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 0DBE9333164; Wed, 17 Sep 2025 12:16:02 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1758111362; cv=none; b=JCbzqb5JyDu0Or9zaMgpGLvYalQ9+uYLHggSXUBepU7BNfTmD4qgTz5z50qyWXodMX+zUL69H30TVQSqpAI1h1GB2CnLWZWex+JW20T80w227zt630wtPPTniBy/tIEj9WXF7dHrFrepiS7K+iSKqz8FMLdyOUkpFlbQ1rL3LCI= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1758111362; c=relaxed/simple; bh=AH2lL83LG/MCK6GW00LCQjiXUczLYQf3wfFtphqsZ6o=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Oek5Dfd/gaGEA3gnhw/RJ6G7I+lgLu8JtabptyFVOXs0aFTjB5IXYSPm+byqlO2dpOMqsXllARzjfKmuiQNP2+D0D3BBmpSCBwKjh7D+RYBBPU0p3K+g3c/u+c/irXHKjzwPVa1oMQ0qctDs0gugo/knJ/22EFFZL2SbU5iWEbY= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=g/KWGQ9N; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="g/KWGQ9N" Received: by smtp.kernel.org (Postfix) with ESMTPSA id E0866C4CEF7; Wed, 17 Sep 2025 12:16:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1758111361; bh=AH2lL83LG/MCK6GW00LCQjiXUczLYQf3wfFtphqsZ6o=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=g/KWGQ9NcAN9v6oSebFVQKvDDRIiCgXAx6UF6meul7UkQKm+T+GMXz/fcPpnfd+Dw bv+uihK7Jay6uSkXK1NgkVjYHHFzglgEiQhe7ooDET7L1Ct+vIM7zS9zDip4yOBrr6 75JUNuKBr/v5oPmRdBqRr5IlRuUsPqIX1EFgQ2EuQUQDR1zQR8fR3U2+taYEo3TWAe kfisWtscV1pa9rbQlzxVxsNBP3Qvv45qWYq7UPRlvqyDA8W4HPBLI6LMtj46T/EzNk YG14mBPj9CLHQmsJwZllP+9iMA3dlXvswT5T+Que0ru4dkd0/3T8rOwj80BXXNO4k2 WxIdqzCe6wQ7Q== Received: from mchehab by mail.kernel.org with local (Exim 4.98.2) (envelope-from ) id 1uyr4h-0000000CGdg-12aY; Wed, 17 Sep 2025 14:15:51 +0200 From: Mauro Carvalho Chehab To: Jonathan Corbet , Linux Doc Mailing List Cc: Mauro Carvalho Chehab , "Akira Yokosawa" , "Mauro Carvalho Chehab" , linux-kernel@vger.kernel.org Subject: [PATCH v7 08/24] tools/docs: sphinx-pre-install: drop a debug print Date: Wed, 17 Sep 2025 14:15:02 +0200 Message-ID: <4c7375298ce9aa1f15e0be42cc7e6fa7e8a54c1c.1758111077.git.mchehab+huawei@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: References: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Sender: Mauro Carvalho Chehab Content-Type: text/plain; charset="utf-8" The version print at the lib was added for debugging purposes. Get rid of it. Signed-off-by: Mauro Carvalho Chehab --- tools/docs/sphinx-pre-install | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/docs/sphinx-pre-install b/tools/docs/sphinx-pre-install index 954ed3dc0645..fa12e01fc7fe 100755 --- a/tools/docs/sphinx-pre-install +++ b/tools/docs/sphinx-pre-install @@ -285,7 +285,6 @@ class AncillaryMethods: cur_ver =3D sys.version_info[:3] if cur_ver >=3D MIN_PYTHON_VERSION: ver =3D ver_str(cur_ver) - print(f"Python version: {ver}") =20 # This could be useful for debugging purposes if SphinxDependencyChecker.which("docutils"): --=20 2.51.0