diff options
| author | Jenkins <jenkins@review.openstack.org> | 2015-09-24 21:47:33 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2015-09-24 21:47:33 +0000 |
| commit | 678e69064854e3a3d3499171b0a29f30f2771840 (patch) | |
| tree | d58d5702ab86677a067a9b40c079090c75a07b56 /openstackclient | |
| parent | 0e89d084343bcda55db737c3286a17ec695befaf (diff) | |
| parent | 00eebaf5bc5ff7a383a8ed085098abc24c8a2e74 (diff) | |
| download | python-openstackclient-678e69064854e3a3d3499171b0a29f30f2771840.tar.gz | |
Merge "Override the debug default and help text"
Diffstat (limited to 'openstackclient')
| -rw-r--r-- | openstackclient/shell.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/openstackclient/shell.py b/openstackclient/shell.py index d3a7d8a5..5b36b8b2 100644 --- a/openstackclient/shell.py +++ b/openstackclient/shell.py @@ -79,6 +79,10 @@ class OpenStackShell(app.App): help.HelpCommand.auth_required = False complete.CompleteCommand.auth_required = False + # Slight change to the meaning of --debug + self.DEFAULT_DEBUG_VALUE = None + self.DEFAULT_DEBUG_HELP = 'Set debug logging and traceback on errors.' + super(OpenStackShell, self).__init__( description=__doc__.strip(), version=openstackclient.__version__, |
