--- a/contrib/python3-whitelist Tue Mar 06 07:10:50 2018 -0600
+++ b/contrib/python3-whitelist Tue Mar 06 07:11:24 2018 -0600
@@ -16,6 +16,7 @@
test-backwards-remove.t
test-basic.t
test-bheads.t
+test-bisect.t
test-bisect2.t
test-blackbox.t
test-bookmarks-current.t
--- a/tests/test-bisect.t Tue Mar 06 07:10:50 2018 -0600
+++ b/tests/test-bisect.t Tue Mar 06 07:11:24 2018 -0600
@@ -465,8 +465,8 @@
> from __future__ import absolute_import
> import sys
> from mercurial import hg, ui as uimod
- > repo = hg.repository(uimod.ui.load(), '.')
- > if repo['.'].rev() < 6:
+ > repo = hg.repository(uimod.ui.load(), b'.')
+ > if repo[b'.'].rev() < 6:
> sys.exit(1)
> EOF
$ chmod +x script.py