diff --git a/src/azure-cli/azure/cli/command_modules/storage/_params.py b/src/azure-cli/azure/cli/command_modules/storage/_params.py index 043c49a52f3..75b16c5249d 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/_params.py +++ b/src/azure-cli/azure/cli/command_modules/storage/_params.py @@ -587,7 +587,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('storage blob') as c: c.argument('blob_name', options_list=('--name', '-n'), arg_type=blob_name_type) - c.argument('destination_path', help='The destination path that will be appended to the blob name.') + c.argument('destination_path', help='The destination path that will be prepended to the blob name.') with self.argument_context('storage blob list') as c: from ._validators import get_include_help_string diff --git a/src/azure-cli/azure/cli/command_modules/storage/_params_azure_stack.py b/src/azure-cli/azure/cli/command_modules/storage/_params_azure_stack.py index d77c8741231..25841cb0d2e 100644 --- a/src/azure-cli/azure/cli/command_modules/storage/_params_azure_stack.py +++ b/src/azure-cli/azure/cli/command_modules/storage/_params_azure_stack.py @@ -435,7 +435,7 @@ def load_arguments(self, _): # pylint: disable=too-many-locals, too-many-statem with self.argument_context('storage blob') as c: c.argument('blob_name', options_list=('--name', '-n'), arg_type=blob_name_type) - c.argument('destination_path', help='The destination path that will be appended to the blob name.') + c.argument('destination_path', help='The destination path that will be prepended to the blob name.') with self.argument_context('storage blob list') as c: c.argument('include', validator=validate_included_datasets)