From 003171ea18454f92610a44daec3b11475d70c015 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sun, 12 Jan 2020 16:04:42 -0500 Subject: [PATCH] Correct syntax error --- client-cli/pvc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client-cli/pvc.py b/client-cli/pvc.py index 932fce12..3483ec8e 100755 --- a/client-cli/pvc.py +++ b/client-cli/pvc.py @@ -353,7 +353,7 @@ def node_secondary(node): task_retcode, task_retdata = pvc_provisioner.task_status(config, None) if len(task_retdata) > 0: - click.echo("Note: There are currently {} active or queued provisioner jobs on the current primary node. These will continue executing, but job status will not be visible until the current node returns to primary state.".format(len(task_retdata)) + click.echo("Note: There are currently {} active or queued provisioner jobs on the current primary node. These will continue executing, but job status will not be visible until the current node returns to primary state.".format(len(task_retdata))) click.echo() retcode, retmsg = pvc_node.node_coordinator_state(config, node, 'secondary') @@ -373,7 +373,7 @@ def node_primary(node): task_retcode, task_retdata = pvc_provisioner.task_status(config, None) if len(task_retdata) > 0: - click.echo("Note: There are currently {} active or queued provisioner jobs on the current primary node. These will continue executing, but job status will not be visible until the current node returns to primary state.".format(len(task_retdata)) + click.echo("Note: There are currently {} active or queued provisioner jobs on the current primary node. These will continue executing, but job status will not be visible until the current node returns to primary state.".format(len(task_retdata))) click.echo() retcode, retmsg = pvc_node.node_coordinator_state(config, node, 'primary')