changeset 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 e6d3d39cc1c7
children b504ff813c4f
files mercurial/localrepo.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/localrepo.py	Wed Sep 19 11:38:05 2018 -0700
+++ b/mercurial/localrepo.py	Wed Sep 19 16:15:22 2018 -0700
@@ -2792,7 +2792,7 @@
     if unknownopts:
         raise error.Abort(_('unable to create repository because of unknown '
                             'creation option: %s') %
-                          ', '.sorted(unknownopts),
+                          ', '.join(sorted(unknownopts)),
                           hint=_('is a required extension not loaded?'))
 
     requirements = newreporequirements(ui, createopts=createopts)