mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-25 01:06:50 +00:00
Merge pull request #3473 from anowlcalledjosh/quote-repo-path
Properly quote repo path in `borg init` output
This commit is contained in:
commit
1d18d6bbb0
1 changed files with 2 additions and 2 deletions
|
@ -252,10 +252,10 @@ def do_init(self, args, repository):
|
|||
'errors if written to with an older version (up to and including Borg 1.0.8).\n'
|
||||
'\n'
|
||||
'If you want to use these older versions, you can disable the check by running:\n'
|
||||
'borg upgrade --disable-tam \'%s\'\n'
|
||||
'borg upgrade --disable-tam %s\n'
|
||||
'\n'
|
||||
'See https://borgbackup.readthedocs.io/en/stable/changes.html#pre-1-0-9-manifest-spoofing-vulnerability '
|
||||
'for details about the security implications.', path)
|
||||
'for details about the security implications.', shlex.quote(path))
|
||||
return self.exit_code
|
||||
|
||||
@with_repository(exclusive=True, manifest=False)
|
||||
|
|
Loading…
Reference in a new issue