diff -r 47fac1692ede -r 9f70512ae2cf mercurial/wireprotov1peer.py --- a/mercurial/wireprotov1peer.py Sun Nov 10 07:30:14 2019 -0800 +++ b/mercurial/wireprotov1peer.py Fri Nov 08 11:19:20 2019 -0800 @@ -599,9 +599,9 @@ # don't pass optional arguments left at their default value opts = {} if three is not None: - opts[r'three'] = three + opts['three'] = three if four is not None: - opts[r'four'] = four + opts['four'] = four return self._call(b'debugwireargs', one=one, two=two, **opts) def _call(self, cmd, **args):