mirror of
https://github.com/borgbackup/borg.git
synced 2026-02-20 00:10:35 -05:00
Merge branch 'master' of github.com:borgbackup/borg
This commit is contained in:
commit
d6b43a7346
1 changed files with 4 additions and 1 deletions
|
|
@ -472,7 +472,10 @@ class Archiver:
|
|||
for archive_info in manifest.list_archive_infos(sort_by='ts'):
|
||||
if args.prefix and not archive_info.name.startswith(args.prefix):
|
||||
continue
|
||||
print(format_archive(archive_info))
|
||||
if args.short:
|
||||
print(archive_info.name)
|
||||
else:
|
||||
print(format_archive(archive_info))
|
||||
return self.exit_code
|
||||
|
||||
def do_info(self, args):
|
||||
|
|
|
|||
Loading…
Reference in a new issue