ebcli/core/abstractcontroller.py [153:175]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @property
    def _help_text(self):
        """
        Returns the help text displayed when for the commands of the type `eb <command> <subcommand>`
        except where <command> is "platform".
        """
        longest = 0

        def pad(label):
            padlength = longest - len(label) + 2
            padding = '   '
            if padlength < 0:
                for x in range(0, longest):
                    padding += ' '
            else:
                for x in range(0, padlength):
                    padding += ' '
            return padding

        help_txt = ''
        for label in self._visible_commands:
            if len(label) > longest:
                longest = len(label)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



ebcli/core/base.py [46:68]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @property
    def _help_text(self):
        """
        Prints the output of `eb --help`
        """
        longest = 0

        def pad(label):
            padlength = longest - len(label) + 2
            padding = '   '
            if padlength < 0:
                for x in range(0, longest):
                    padding += ' '
            else:
                for x in range(0, padlength):
                    padding += ' '
            return padding

        help_txt = ''
        for label in self._visible_commands:
            # get longest command
            if len(label) > longest:
                longest = len(label)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



