py3: convert bool variables to bytes before passing into ui.debug()
authorPulkit Goyal <7895pulkit@gmail.com>
Thu, 01 Jun 2017 02:14:26 +0530
changeset 32641 49e1e5acb8ff
parent 32640 aeac3cbcbbc1
child 32642 c032e137e494
py3: convert bool variables to bytes before passing into ui.debug() We can't pass unicodes to ui.debug() and hence we need to convert things to bytes before passing them.
mercurial/merge.py
--- a/mercurial/merge.py	Thu Jun 01 01:14:02 2017 +0530
+++ b/mercurial/merge.py	Thu Jun 01 02:14:26 2017 +0530
@@ -807,9 +807,12 @@
         ret = copies.mergecopies(repo, wctx, p2, pa)
         copy, movewithdir, diverge, renamedelete, dirmove = ret
 
+    boolbm = pycompat.bytestr(bool(branchmerge))
+    boolf = pycompat.bytestr(bool(force))
+    boolm = pycompat.bytestr(bool(matcher))
     repo.ui.note(_("resolving manifests\n"))
     repo.ui.debug(" branchmerge: %s, force: %s, partial: %s\n"
-                  % (bool(branchmerge), bool(force), bool(matcher)))
+                  % (boolbm, boolf, boolm))
     repo.ui.debug(" ancestor: %s, local: %s, remote: %s\n" % (pa, wctx, p2))
 
     m1, m2, ma = wctx.manifest(), p2.manifest(), pa.manifest()