Fix bad flag value

This commit is contained in:
Joshua Boniface 2019-06-21 15:09:15 -04:00
parent 93d2e0da6f
commit 519203d7fd
1 changed files with 1 additions and 1 deletions

View File

@ -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):