Messages in this thread Patch in this message |  | | From | Mauro Carvalho Chehab <> | | Subject | [PATCH RFC 1/3] tools/docs: python_version.py: drop a debug print | | Date | Wed, 3 Sep 2025 17:44:34 +0200 |
| |
The version print at the lib was added for debugging purposes. Get rid of it.
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org> --- tools/docs/lib/python_version.py | 2 -- 1 file changed, 2 deletions(-)
diff --git a/tools/docs/lib/python_version.py b/tools/docs/lib/python_version.py index 0519d524e547..660bfe7d23fa 100644 --- a/tools/docs/lib/python_version.py +++ b/tools/docs/lib/python_version.py @@ -109,8 +109,6 @@ class PythonVersion: cur_ver = sys.version_info[:3] if cur_ver >= min_version: ver = PythonVersion.ver_str(cur_ver) - print(f"Python version: {ver}") - return python_ver = PythonVersion.ver_str(cur_ver) -- 2.51.0
|  |