changeset 38492:2394cd58b81f

py3: convert opts keys to bytes using pycompat.byteskwargs() This fixes the py3 build broken due to 56b2074114b19e12abd9cd4c378d58b702232705. Differential Revision: https://phab.mercurial-scm.org/D3853
author Pulkit Goyal <7895pulkit@gmail.com>
date Thu, 28 Jun 2018 21:24:47 +0530
parents 72286f9e324f
children da2a7d8354b2
files hgext/rebase.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgext/rebase.py	Thu Jun 28 22:23:08 2018 -0400
+++ b/hgext/rebase.py	Thu Jun 28 21:24:47 2018 +0530
@@ -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'):