hgext/narrow/narrowwirepeer.py
changeset 43503 313e3a279828
parent 43249 63d440bef72a
child 43506 9f70512ae2cf
--- a/hgext/narrow/narrowwirepeer.py	Thu Nov 07 03:59:22 2019 -0800
+++ b/hgext/narrow/narrowwirepeer.py	Thu Nov 07 13:18:19 2019 -0500
@@ -33,8 +33,8 @@
                 # TODO: don't blindly add include/exclude wireproto
                 # arguments to unbundle.
                 include, exclude = repo.narrowpats
-                kwargs[r"includepats"] = b','.join(include)
-                kwargs[r"excludepats"] = b','.join(exclude)
+                kwargs["includepats"] = b','.join(include)
+                kwargs["excludepats"] = b','.join(exclude)
             return orig(cmd, *args, **kwargs)
 
         extensions.wrapfunction(peer, b'_calltwowaystream', wrapped)