diff --git a/troveclient/shell.py b/troveclient/shell.py index 46bbf2dc..7e21817e 100644 --- a/troveclient/shell.py +++ b/troveclient/shell.py @@ -501,6 +501,11 @@ class OpenStackTroveShell(object): # I'm picky about my shell help. class OpenStackHelpFormatter(argparse.HelpFormatter): + def __init__(self, prog, indent_increment=2, max_help_position=34, + width=None): + super(OpenStackHelpFormatter, self).__init__(prog, indent_increment, + max_help_position, width) + def start_section(self, heading): # Title-case the headings heading = '%s%s' % (heading[0].upper(), heading[1:])