D3853: py3: convert opts keys to bytes using pycompat.byteskwargs()

pulkit (Pulkit Goyal) phabricator at mercurial-scm.org
Fri Jun 29 08:31:44 EDT 2018


This revision was automatically updated to reflect the committed changes.
Closed by commit rHG2394cd58b81f: py3: convert opts keys to bytes using pycompat.byteskwargs() (authored by pulkit, committed by ).

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST UPDATE
  https://phab.mercurial-scm.org/D3853?vs=9338&id=9352

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

AFFECTED FILES
  hgext/rebase.py

CHANGE DETAILS

diff --git a/hgext/rebase.py b/hgext/rebase.py
--- a/hgext/rebase.py
+++ b/hgext/rebase.py
@@ -820,7 +820,7 @@
     if dryrun:
         leaveunfinished = True
         inmemory = True
-        rbsrt = rebaseruntime(repo, ui, inmemory, opts)
+        rbsrt = rebaseruntime(repo, ui, inmemory, pycompat.byteskwargs(opts))
         try:
             overrides = {('rebase', 'singletransaction'): True}
             with ui.configoverride(overrides, 'rebase'):



To: pulkit, #hg-reviewers
Cc: mercurial-devel


More information about the Mercurial-devel mailing list