1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2024-12-23 16:26:29 +00:00

docs: list: don't print key listings in fat (html + man)

This commit is contained in:
Marian Beermann 2017-02-05 13:43:19 +01:00
parent 83bb25d848
commit 7e486074e8

View file

@ -2204,12 +2204,15 @@ def build_parser(self, prog=None):
See the "borg help patterns" command for more help on exclude patterns. See the "borg help patterns" command for more help on exclude patterns.
The following keys are available for --format: The following keys are available for --format:
""") + BaseFormatter.keys_help() + textwrap.dedent(""" """) + BaseFormatter.keys_help() + textwrap.dedent("""
-- Keys for listing repository archives: Keys for listing repository archives:
""") + ArchiveFormatter.keys_help() + textwrap.dedent(""" """) + ArchiveFormatter.keys_help() + textwrap.dedent("""
-- Keys for listing archive files: Keys for listing archive files:
""") + ItemFormatter.keys_help() """) + ItemFormatter.keys_help()
subparser = subparsers.add_parser('list', parents=[common_parser], add_help=False, subparser = subparsers.add_parser('list', parents=[common_parser], add_help=False,
description=self.do_list.__doc__, description=self.do_list.__doc__,