From ffdd6bf3f800e7cd0542d0ae4641da257ff70397 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Tue, 29 Jun 2021 18:22:39 -0400 Subject: [PATCH] Fix typo in command argument --- client-cli/pvc/pvc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-cli/pvc/pvc.py b/client-cli/pvc/pvc.py index 63a477c0..e362fddf 100755 --- a/client-cli/pvc/pvc.py +++ b/client-cli/pvc/pvc.py @@ -4490,7 +4490,7 @@ def task_restore(filename, confirm_flag): ############################################################################### @click.command(name='init', short_help='Initialize a new cluster.') @click.option( - '-o', '--overwite', 'overwrite_flag', + '-o', '--overwrite', 'overwrite_flag', is_flag=True, default=False, help='Remove and overwrite any existing data' )