diff options
| author | Jenkins <jenkins@review.openstack.org> | 2014-06-17 05:06:14 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2014-06-17 05:06:14 +0000 |
| commit | f88a9c641d62f50f6cce0462c6a30b4b920da757 (patch) | |
| tree | fb16d71cbba9292abff558433d3d9e38a2c81e58 /keystoneclient/shell.py | |
| parent | 2d1cc878033c9dee997c12f937bd92f32599071b (diff) | |
| parent | d3b665c0e078dc63e9b4ea0c0383509617f66eab (diff) | |
| download | python-keystoneclient-f88a9c641d62f50f6cce0462c6a30b4b920da757.tar.gz | |
Merge "Added help text for the debug option"
Diffstat (limited to 'keystoneclient/shell.py')
| -rw-r--r-- | keystoneclient/shell.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/keystoneclient/shell.py b/keystoneclient/shell.py index 5caadeb..df08573 100644 --- a/keystoneclient/shell.py +++ b/keystoneclient/shell.py @@ -99,7 +99,10 @@ class OpenStackIdentityShell(object): parser.add_argument('--debug', default=False, action='store_true', - help=argparse.SUPPRESS) + help="Prints debugging output onto the console, " + "this includes the curl request and response " + "calls. Helpful for debugging and " + "understanding the API calls.") parser.add_argument('--timeout', default=600, |
