From f3910f49ca65bd6aa594bf3265a9adb3e5b7b735 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Sun, 13 Oct 2019 14:46:28 -0700 Subject: [PATCH] Fix incorrect help on borg list --last flag. --- 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 7eb55a2d6..6f0f1a7b8 100644 --- a/borgmatic/commands/arguments.py +++ b/borgmatic/commands/arguments.py @@ -323,7 +323,7 @@ def parse_arguments(*unparsed_arguments): '--first', metavar='N', help='List first N archives after other filters are applied' ) list_group.add_argument( - '--last', metavar='N', help='List first N archives after other filters are applied' + '--last', metavar='N', help='List last N archives after other filters are applied' ) list_group.add_argument( '-e', '--exclude', metavar='PATTERN', help='Exclude paths matching the pattern'