D2303: bundle2: use pycompat.strkwargs as needed

2018-02-18 Thread durin42 (Augie Fackler)
This revision was automatically updated to reflect the committed changes.
Closed by commit rHG1ec6fd26f841: bundle2: use pycompat.strkwargs as needed 
(authored by durin42, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D2303?vs=5821=5840

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

AFFECTED FILES
  mercurial/bundle2.py

CHANGE DETAILS

diff --git a/mercurial/bundle2.py b/mercurial/bundle2.py
--- a/mercurial/bundle2.py
+++ b/mercurial/bundle2.py
@@ -2040,14 +2040,15 @@
 allhooks.append(hookargs)
 
 for hookargs in allhooks:
-op.repo.hook('prepushkey', throw=True, **hookargs)
+op.repo.hook('prepushkey', throw=True,
+ **pycompat.strkwargs(hookargs))
 
 bookstore.applychanges(op.repo, op.gettransaction(), changes)
 
 if pushkeycompat:
 def runhook():
 for hookargs in allhooks:
-op.repo.hook('pushkey', **hookargs)
+op.repo.hook('pushkey', **pycompat.strkwargs(hookargs))
 op.repo._afterlock(runhook)
 
 elif bookmarksmode == 'records':



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


D2303: bundle2: use pycompat.strkwargs as needed

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

REPOSITORY
  rHG Mercurial

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

AFFECTED FILES
  mercurial/bundle2.py

CHANGE DETAILS

diff --git a/mercurial/bundle2.py b/mercurial/bundle2.py
--- a/mercurial/bundle2.py
+++ b/mercurial/bundle2.py
@@ -2040,14 +2040,15 @@
 allhooks.append(hookargs)
 
 for hookargs in allhooks:
-op.repo.hook('prepushkey', throw=True, **hookargs)
+op.repo.hook('prepushkey', throw=True,
+ **pycompat.strkwargs(hookargs))
 
 bookstore.applychanges(op.repo, op.gettransaction(), changes)
 
 if pushkeycompat:
 def runhook():
 for hookargs in allhooks:
-op.repo.hook('pushkey', **hookargs)
+op.repo.hook('pushkey', **pycompat.strkwargs(hookargs))
 op.repo._afterlock(runhook)
 
 elif bookmarksmode == 'records':



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