##// END OF EJS Templates
py3: use pycompat.strkwargs()...
Gregory Szorc -
r39853:3ed53b07 default
parent child Browse files
Show More
@@ -339,7 +339,7 b' def dispatch(repo, proto, command):'
339 339 func, spec = COMMANDS[command]
340 340 args = proto.getargs(spec)
341 341
342 return func(repo, proto, **args)
342 return func(repo, proto, **pycompat.strkwargs(args))
343 343
344 344 @interfaceutil.implementer(wireprototypes.baseprotocolhandler)
345 345 class httpv2protocolhandler(object):
General Comments 0
You need to be logged in to leave comments. Login now