changeset 37670:719b8cb22936

localrepo: add some overlooked strkwargs love for py3 Differential Revision: https://phab.mercurial-scm.org/D3337
author Augie Fackler <augie@google.com>
date Fri, 13 Apr 2018 18:28:58 -0400
parents 1cb54e6193a6
children 726a95a57eeb
files mercurial/localrepo.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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: