comparison mercurial/localrepo.py @ 39846:d3e761f9ac0a

localrepo: add missing join() Differential Revision: https://phab.mercurial-scm.org/D4705
author Gregory Szorc <gregory.szorc@gmail.com>
date Wed, 19 Sep 2018 16:15:22 -0700
parents 7aa440222323
children b504ff813c4f
comparison
equal deleted inserted replaced
39845:e6d3d39cc1c7 39846:d3e761f9ac0a
2790 'a dict') 2790 'a dict')
2791 2791
2792 if unknownopts: 2792 if unknownopts:
2793 raise error.Abort(_('unable to create repository because of unknown ' 2793 raise error.Abort(_('unable to create repository because of unknown '
2794 'creation option: %s') % 2794 'creation option: %s') %
2795 ', '.sorted(unknownopts), 2795 ', '.join(sorted(unknownopts)),
2796 hint=_('is a required extension not loaded?')) 2796 hint=_('is a required extension not loaded?'))
2797 2797
2798 requirements = newreporequirements(ui, createopts=createopts) 2798 requirements = newreporequirements(ui, createopts=createopts)
2799 2799
2800 wdirvfs = vfsmod.vfs(path, expandpath=True, realpath=True) 2800 wdirvfs = vfsmod.vfs(path, expandpath=True, realpath=True)