mirror of
https://github.com/borgbackup/borg.git
synced 2026-06-13 10:50:21 -04:00
Merge pull request #7128 from ThomasWaldmann/fix-root-paths-1.2
fix args.paths related argparsing, fixes #6994
This commit is contained in:
commit
2ae41fd9e6
1 changed files with 1 additions and 1 deletions
|
|
@ -3614,7 +3614,7 @@ class Archiver:
|
|||
subparser.add_argument('location', metavar='ARCHIVE',
|
||||
type=location_validator(archive=True),
|
||||
help='name of archive to create (must be also a valid directory name)')
|
||||
subparser.add_argument('paths', metavar='PATH', nargs='*', type=str,
|
||||
subparser.add_argument('paths', metavar='PATH', nargs='*', type=str, action='extend',
|
||||
help='paths to archive')
|
||||
|
||||
# borg debug
|
||||
|
|
|
|||
Loading…
Reference in a new issue