From d3b665c0e078dc63e9b4ea0c0383509617f66eab Mon Sep 17 00:00:00 2001 From: Andre Naehring Date: Wed, 11 Jun 2014 11:45:11 +0200 Subject: [PATCH] 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 --- keystoneclient/shell.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/keystoneclient/shell.py b/keystoneclient/shell.py index 3aebaddb0..d65c226eb 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,