From 6180e1798dba7cc40c6eb1841c5177dc62c2b6fd Mon Sep 17 00:00:00 2001 From: Mauricio Arrechea Date: Wed, 25 Jan 2023 16:27:02 +0100 Subject: [PATCH] changed python to python3 on output when running a status command --- cbn_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cbn_cli.py b/cbn_cli.py index bb44d08..9582d2e 100755 --- a/cbn_cli.py +++ b/cbn_cli.py @@ -260,7 +260,7 @@ def call_create_parser(args): print(json.dumps(parser, indent=2)) print('To get status of the parser run the following command:') - print((f'python cbn_cli.py --region={args.region} ' + + print((f'python3 cbn_cli.py --region={args.region} ' + f'--credentials_file={args.credentials_file} ' + f'status --config_id={parser["configId"]}')) return parser