D4705: localrepo: add missing join()
indygreg (Gregory Szorc)
phabricator at mercurial-scm.org
Wed Sep 26 17:23:19 UTC 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rHGd3e761f9ac0a: localrepo: add missing join() (authored by indygreg, committed by ).
REPOSITORY
rHG Mercurial
CHANGES SINCE LAST UPDATE
https://phab.mercurial-scm.org/D4705?vs=11313&id=11377
REVISION DETAIL
https://phab.mercurial-scm.org/D4705
AFFECTED FILES
mercurial/localrepo.py
CHANGE DETAILS
diff --git a/mercurial/localrepo.py b/mercurial/localrepo.py
--- a/mercurial/localrepo.py
+++ b/mercurial/localrepo.py
@@ -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)
To: indygreg, #hg-reviewers
Cc: mercurial-devel
More information about the Mercurial-devel
mailing list