From 0c221be1837c39ae57c764f2d3ffa8bb340e922a Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Sat, 7 Nov 2020 13:19:38 -0500 Subject: [PATCH] Lint: F821 undefined name 'name' --- client-cli/pvc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-cli/pvc.py b/client-cli/pvc.py index a842b1c3..8c972881 100755 --- a/client-cli/pvc.py +++ b/client-cli/pvc.py @@ -3609,7 +3609,7 @@ def init_cluster(confirm_flag): if not confirm_flag: try: - click.confirm('Remove all existing cluster data from coordinators and initialize a new cluster'.format(name), prompt_suffix='? ', abort=True) + click.confirm('Remove all existing cluster data from coordinators and initialize a new cluster', prompt_suffix='? ', abort=True) except Exception: exit(0)