Submitter | phabricator |
---|---|
Date | Feb. 22, 2018, 3:52 a.m. |
Message ID | <89b2fa1daf57213627a6739b9b89bc2e@localhost.localdomain> |
Download | mbox | patch |
Permalink | /patch/28232/ |
State | Not Applicable |
Headers | show |
Comments
Patch
diff --git a/hgext/narrow/narrowwirepeer.py b/hgext/narrow/narrowwirepeer.py --- a/hgext/narrow/narrowwirepeer.py +++ b/hgext/narrow/narrowwirepeer.py @@ -45,8 +45,8 @@ # TODO: don't blindly add include/exclude wireproto # arguments to unbundle. include, exclude = repo.narrowpats - kwargs["includepats"] = ','.join(include) - kwargs["excludepats"] = ','.join(exclude) + kwargs[r"includepats"] = ','.join(include) + kwargs[r"excludepats"] = ','.join(exclude) return orig(cmd, *args, **kwargs) extensions.wrapfunction(peer, '_calltwowaystream', wrapped) hg.wirepeersetupfuncs.append(wirereposetup)