Mercurial > hg
changeset 34741:60143d038eb7
wireproto: more strkwargs cleanup
Differential Revision: https://phab.mercurial-scm.org/D1109
author | Augie Fackler <augie@google.com> |
---|---|
date | Sun, 15 Oct 2017 00:39:53 -0400 |
parents | b2601c5977a4 |
children | 5a9cad0dfddb |
files | mercurial/wireproto.py |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/wireproto.py Sun Oct 15 00:38:33 2017 -0400 +++ b/mercurial/wireproto.py Sun Oct 15 00:39:53 2017 -0400 @@ -859,7 +859,8 @@ _('server has pull-based clones disabled'), hint=_('remove --pull if specified or upgrade Mercurial')) - chunks = exchange.getbundlechunks(repo, 'serve', **opts) + chunks = exchange.getbundlechunks(repo, 'serve', + **pycompat.strkwargs(opts)) except error.Abort as exc: # cleanly forward Abort error to the client if not exchange.bundle2requested(opts.get('bundlecaps')):