diff options
| author | Jadon Naas <jadon.naas@canonical.com> | 2022-11-10 11:51:18 -0500 |
|---|---|---|
| committer | Jadon Naas <jadon.naas@canonical.com> | 2022-11-10 11:51:18 -0500 |
| commit | 348eb796321c8475af73b727a310c3a09f519ffa (patch) | |
| tree | 477dc43599ba587583a3b1dc064fbc7fd3f78e8b /openstackclient | |
| parent | 50015b96085c625b1ceaeab880db9271d7e94647 (diff) | |
| download | python-openstackclient-348eb796321c8475af73b727a310c3a09f519ffa.tar.gz | |
Docstring fix for CreateVolumeAttachment class
The command "volume attachment create" has a typo in the docstring.
The docstring says to use "server add volume", but the command is
actually "server volume add". This
change fixes the typo in the docstring.
Task: 46781
Story: 2010401
Change-Id: Ie19a24ead100dd9177669653a7a9997772ef4538
Diffstat (limited to 'openstackclient')
| -rw-r--r-- | openstackclient/volume/v3/volume_attachment.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openstackclient/volume/v3/volume_attachment.py b/openstackclient/volume/v3/volume_attachment.py index c7401837..57a6da73 100644 --- a/openstackclient/volume/v3/volume_attachment.py +++ b/openstackclient/volume/v3/volume_attachment.py @@ -82,7 +82,7 @@ class CreateVolumeAttachment(command.ShowOne): the volume to the server at the hypervisor level. As a result, it should typically only be used for troubleshooting issues with an existing server in combination with other tooling. For all other use cases, the 'server - volume add' command should be preferred. + add volume' command should be preferred. """ def get_parser(self, prog_name): |
