mercurial/wireprotov2server.py
changeset 39828 3ed53b071041
parent 39815 d3d333ab167a
child 39837 69b4a5b89dc5
--- a/mercurial/wireprotov2server.py	Mon Sep 24 20:10:01 2018 -0700
+++ b/mercurial/wireprotov2server.py	Mon Sep 24 20:17:42 2018 -0700
@@ -339,7 +339,7 @@
     func, spec = COMMANDS[command]
     args = proto.getargs(spec)
 
-    return func(repo, proto, **args)
+    return func(repo, proto, **pycompat.strkwargs(args))
 
 @interfaceutil.implementer(wireprototypes.baseprotocolhandler)
 class httpv2protocolhandler(object):