1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-02-23 14:41:43 +00:00

Display proper repo URL.

This commit is contained in:
Stavros Korokithakis 2015-12-02 16:51:49 +02:00
parent e6d3720d9b
commit d572ceaca2

View file

@ -86,7 +86,7 @@ def do_serve(self, args):
def do_init(self, args):
"""Initialize an empty repository"""
logger.info('Initializing repository at "%s"' % args.repository.orig)
logger.info('Initializing repository at "%s"' % args.repository.canonical_path())
repository = self.open_repository(args.repository, create=True, exclusive=True)
key = key_creator(repository, args)
manifest = Manifest(key, repository)