mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-28 10:49:16 +00:00
fix commandline dispatch for converter
This commit is contained in:
parent
57801a288d
commit
58815bc28a
1 changed files with 2 additions and 2 deletions
|
@ -463,9 +463,9 @@ def do_prune(self, args):
|
|||
stats.print_('Deleted data:', cache)
|
||||
return self.exit_code
|
||||
|
||||
def do_convert(self, parser, commands, args):
|
||||
def do_convert(self, args):
|
||||
"""convert a repository from attic to borg"""
|
||||
repo = AtticRepositoryConverter(os.path.join(args.repository, 'repository'), create=False)
|
||||
repo = AtticRepositoryConverter(args.repository.path, create=False)
|
||||
try:
|
||||
repo.convert(args.dry_run)
|
||||
except NotImplementedError as e:
|
||||
|
|
Loading…
Reference in a new issue