From 2d10e758e0bf71060a6e57f9e2ab0933ccaebca0 Mon Sep 17 00:00:00 2001 From: Diego Blanco Date: Mon, 12 Oct 2020 00:04:15 +0200 Subject: [PATCH] Fixed minor typo in help for "info" command --- borgmatic/commands/arguments.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/borgmatic/commands/arguments.py b/borgmatic/commands/arguments.py index c5dde7c73..e201e6204 100644 --- a/borgmatic/commands/arguments.py +++ b/borgmatic/commands/arguments.py @@ -581,7 +581,7 @@ def parse_arguments(*unparsed_arguments): help='Show info for first N archives after other filters are applied', ) info_group.add_argument( - '--last', metavar='N', help='Show info for first N archives after other filters are applied' + '--last', metavar='N', help='Show info for last N archives after other filters are applied' ) info_group.add_argument('-h', '--help', action='help', help='Show this help message and exit')