D2368: narrowbundle2: this dict contains native strings, look kws up as such

2018-02-21 Thread durin42 (Augie Fackler)
This revision was automatically updated to reflect the committed changes.
Closed by commit rHGf3b9377d6aea: narrowbundle2: this dict contains native 
strings, look kws up as such (authored by durin42, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D2368?vs=5948=5974

REVISION DETAIL
  https://phab.mercurial-scm.org/D2368

AFFECTED FILES
  hgext/narrow/narrowbundle2.py

CHANGE DETAILS

diff --git a/hgext/narrow/narrowbundle2.py b/hgext/narrow/narrowbundle2.py
--- a/hgext/narrow/narrowbundle2.py
+++ b/hgext/narrow/narrowbundle2.py
@@ -479,7 +479,7 @@
 if repo.ui.has_section(_NARROWACL_SECTION):
 getbundlechangegrouppart_narrow(
 *args, **applyacl_narrow(repo, kwargs))
-elif kwargs.get('narrow', False):
+elif kwargs.get(r'narrow', False):
 getbundlechangegrouppart_narrow(*args, **kwargs)
 else:
 origcgfn(*args, **kwargs)



To: durin42, #hg-reviewers, indygreg
Cc: pulkit, mercurial-devel
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel


D2368: narrowbundle2: this dict contains native strings, look kws up as such

2018-02-21 Thread pulkit (Pulkit Goyal)
pulkit added a comment.


  This one requires # skip-blame.

REPOSITORY
  rHG Mercurial

REVISION DETAIL
  https://phab.mercurial-scm.org/D2368

To: durin42, #hg-reviewers
Cc: pulkit, mercurial-devel
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel


D2368: narrowbundle2: this dict contains native strings, look kws up as such

2018-02-21 Thread durin42 (Augie Fackler)
durin42 created this revision.
Herald added a subscriber: mercurial-devel.
Herald added a reviewer: hg-reviewers.

REVISION SUMMARY
  We could also do a byteskwargs dance, but that seems silly given that
  we only need this one element.

REPOSITORY
  rHG Mercurial

REVISION DETAIL
  https://phab.mercurial-scm.org/D2368

AFFECTED FILES
  hgext/narrow/narrowbundle2.py

CHANGE DETAILS

diff --git a/hgext/narrow/narrowbundle2.py b/hgext/narrow/narrowbundle2.py
--- a/hgext/narrow/narrowbundle2.py
+++ b/hgext/narrow/narrowbundle2.py
@@ -479,7 +479,7 @@
 if repo.ui.has_section(_NARROWACL_SECTION):
 getbundlechangegrouppart_narrow(
 *args, **applyacl_narrow(repo, kwargs))
-elif kwargs.get('narrow', False):
+elif kwargs.get(r'narrow', False):
 getbundlechangegrouppart_narrow(*args, **kwargs)
 else:
 origcgfn(*args, **kwargs)



To: durin42, #hg-reviewers
Cc: mercurial-devel
___
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel