From 519203d7fd3a458f3fefbd49fce72e1895ce47fe Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 21 Jun 2019 15:09:15 -0400 Subject: [PATCH] Fix bad flag value --- 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 9fd07d76..090a6432 100755 --- a/client-cli/pvc.py +++ b/client-cli/pvc.py @@ -1501,7 +1501,7 @@ def init_cluster(): @click.command(name='init', short_help='Initialize a new cluster.') @click.option( '--yes', 'yes', - is_flag=True, default_value=False, + is_flag=True, default=False, help='Pre-confirm the initialization.' ) def init_cluster(yes):