From 1dc808124b3248917c556583745d35cae11cbfe6 Mon Sep 17 00:00:00 2001 From: Mitsuhiro Tanino Date: Wed, 24 Sep 2014 20:03:27 -0400 Subject: [PATCH] Docstring of unmanage subcommand is missing cinder unmanage is missing docstring. This patch adds description of unmanage to python-cinderclient. Closes-Bug: #1373662 Change-Id: I3ae8ee714507b82c661360e86136dab5ef461ce3 --- cinderclient/v2/shell.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cinderclient/v2/shell.py b/cinderclient/v2/shell.py index 41972a1e8..7c1845565 100644 --- a/cinderclient/v2/shell.py +++ b/cinderclient/v2/shell.py @@ -1693,6 +1693,7 @@ def do_manage(cs, args): help='Name or ID of the volume to unmanage.') @utils.service_type('volumev2') def do_unmanage(cs, args): + """Stop managing a volume.""" utils.find_volume(cs, args.volume).unmanage(args.volume)