mercurial/localrepo.py
changeset 37670 719b8cb22936
parent 37669 1cb54e6193a6
child 37674 f83cb91b052e
--- a/mercurial/localrepo.py	Fri Apr 13 18:17:45 2018 -0400
+++ b/mercurial/localrepo.py	Fri Apr 13 18:28:58 2018 -0400
@@ -182,7 +182,7 @@
         f = pycompat.futures.Future()
 
         try:
-            result = fn(**args)
+            result = fn(**pycompat.strkwargs(args))
         except Exception:
             pycompat.future_set_exception_info(f, sys.exc_info()[1:])
         else: