From d3bb1cb9e470f72f718e38fd708216b4b8434fdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20P=2E=20Berrang=C3=A9?= Date: Tue, 8 Oct 2024 10:13:02 +0100 Subject: [PATCH] pcsclient: remove leftover debugging 'print(args)' statement MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Dumping the python "Namespace" object to stdout after parsing argv serves no end-user purpose: $ pcsclient.py cache Namespace(command='cache', url=None, input_file=None, output_dir=None, sub_dir=False, expire=None, tcb_update_type=None, func=) Please note: A prompt may appear asking for your keyring password to access stored credentials. Please input ApiKey for Intel PCS: Remove what is presumably a leftover debugging statement: $ pcsclient.py cache Please note: A prompt may appear asking for your keyring password to access stored credentials. Please input ApiKey for Intel PCS: Signed-off-by: Daniel P. Berrangé --- tools/PcsClientTool/pcsclient.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tools/PcsClientTool/pcsclient.py b/tools/PcsClientTool/pcsclient.py index 07ab8080..eef984af 100755 --- a/tools/PcsClientTool/pcsclient.py +++ b/tools/PcsClientTool/pcsclient.py @@ -63,8 +63,6 @@ def main(): parser.print_help() parser.exit() - print(args) - args.func(args) class Utils: