mirror of
https://github.com/borgbackup/borg.git
synced 2026-03-09 09:50:37 -04:00
Merge pull request #8108 from ThomasWaldmann/new-rc-fix-1.4
fix: Error/CommandError have a output format for 1 argument
This commit is contained in:
commit
4abc7f18cd
1 changed files with 1 additions and 1 deletions
|
|
@ -547,7 +547,7 @@ class Archiver:
|
|||
if rc != 0:
|
||||
raise CommandError(f'Command {args.paths[0]!r} exited with status {rc}')
|
||||
except BackupError as e:
|
||||
raise Error('%s: %s', path, e)
|
||||
raise Error(f'{path!r}: {e}')
|
||||
else:
|
||||
status = '-'
|
||||
self.print_file_status(status, path)
|
||||
|
|
|
|||
Loading…
Reference in a new issue