Submitter | Yuya Nishihara |
---|---|
Date | June 24, 2017, 5:56 a.m. |
Message ID | <24c0a9a7fa865cc6ff6f.1498283809@mimosa> |
Download | mbox | patch |
Permalink | /patch/21663/ |
State | Accepted |
Headers | show |
Comments
Patch
diff --git a/hgext/share.py b/hgext/share.py --- a/hgext/share.py +++ b/hgext/share.py @@ -132,10 +132,10 @@ def clone(orig, ui, source, *args, **opt if pool: pool = util.expandpath(pool) - opts[r'shareopts'] = dict( - pool=pool, - mode=ui.config('share', 'poolnaming', 'identity'), - ) + opts[r'shareopts'] = { + 'pool': pool, + 'mode': ui.config('share', 'poolnaming', 'identity'), + } return orig(ui, source, *args, **opts)