mirror of
https://github.com/borgbackup/borg.git
synced 2026-06-11 09:59:19 -04:00
Merge pull request #7127 from ThomasWaldmann/fix-root-paths-master
fix args.paths related argparsing, fixes #6994
This commit is contained in:
commit
b9ca421e27
1 changed files with 1 additions and 1 deletions
|
|
@ -853,4 +853,4 @@ class CreateMixIn:
|
|||
)
|
||||
|
||||
subparser.add_argument("name", metavar="NAME", type=NameSpec, help="specify the archive name")
|
||||
subparser.add_argument("paths", metavar="PATH", nargs="*", type=str, help="paths to archive")
|
||||
subparser.add_argument("paths", metavar="PATH", nargs="*", type=str, action="extend", help="paths to archive")
|
||||
|
|
|
|||
Loading…
Reference in a new issue