From dc949a471e8d38e44631be5e8af9780a2dce6542 Mon Sep 17 00:00:00 2001 From: David Vadas Date: Tue, 2 Sep 2025 09:55:11 +1000 Subject: [PATCH] Fix help text for `fleet list` command --- src/fleet/HISTORY.rst | 4 ++++ src/fleet/azext_fleet/_help.py | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/fleet/HISTORY.rst b/src/fleet/HISTORY.rst index d4e5d43819a..b7f5f2ec132 100644 --- a/src/fleet/HISTORY.rst +++ b/src/fleet/HISTORY.rst @@ -146,3 +146,7 @@ Release History 1.6.3 ++++++ * Mark gate commands as preview, fixing bug from version 1.6.0. + +1.6.4 +++++++ +* Fix help text for `fleet list` command. diff --git a/src/fleet/azext_fleet/_help.py b/src/fleet/azext_fleet/_help.py index fc9972c8e9b..81932da3b5c 100644 --- a/src/fleet/azext_fleet/_help.py +++ b/src/fleet/azext_fleet/_help.py @@ -53,11 +53,11 @@ helps['fleet list'] = """ type: command - short-summary: Lists all fleets within a resource group. + short-summary: Lists all fleets. examples: - - name: List all fleets with a specific subscription. + - name: List all fleets within your current subscription. text: az fleet list - - name: List all fleets that exist within a specific subscription and resource group. + - name: List all fleets that exist within your current subscription and the chosen resource group. text: az fleet list -g MyResourceGroup """