From 8aa00894efacc29185da660fb3ae7c42adefaa09 Mon Sep 17 00:00:00 2001 From: Huanxuan Ao <huanxuan.ao@easystack.cn> Date: Mon, 4 Jul 2016 16:42:42 +0800 Subject: [PATCH] Remove useless dest of option in "snapshot create" command The option is '--force' and the default argument is 'force', so the 'dest=force' is useless and unnecessary. This patch remove it. Change-Id: If8fd5270e4e36b5361127f4a91bdf347f29341c2 --- openstackclient/volume/v2/snapshot.py | 1 - 1 file changed, 1 deletion(-) diff --git a/openstackclient/volume/v2/snapshot.py b/openstackclient/volume/v2/snapshot.py index 439904e744..5aba04aee3 100644 --- a/openstackclient/volume/v2/snapshot.py +++ b/openstackclient/volume/v2/snapshot.py @@ -46,7 +46,6 @@ class CreateSnapshot(command.ShowOne): ) parser.add_argument( "--force", - dest="force", action="store_true", default=False, help=_("Create a snapshot attached to an instance. "