Fix bad flag value
This commit is contained in:
parent
93d2e0da6f
commit
519203d7fd
|
@ -1501,7 +1501,7 @@ def init_cluster():
|
||||||
@click.command(name='init', short_help='Initialize a new cluster.')
|
@click.command(name='init', short_help='Initialize a new cluster.')
|
||||||
@click.option(
|
@click.option(
|
||||||
'--yes', 'yes',
|
'--yes', 'yes',
|
||||||
is_flag=True, default_value=False,
|
is_flag=True, default=False,
|
||||||
help='Pre-confirm the initialization.'
|
help='Pre-confirm the initialization.'
|
||||||
)
|
)
|
||||||
def init_cluster(yes):
|
def init_cluster(yes):
|
||||||
|
|
Loading…
Reference in New Issue