Added help text for the debug option

This adds a short help text for --debug on the command line. Prior to
this short help text the debug option was hidden.

Change-Id: I2e641ec496e596fcc4879855ac750d957522be88
Closes-Bug: #1328813
This commit is contained in:
Andre Naehring
2014-06-11 11:45:11 +02:00
parent 39ab20f609
commit d3b665c0e0

View File

@@ -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,