--- a/contrib/python3-whitelist Tue Mar 06 07:15:01 2018 -0600
+++ b/contrib/python3-whitelist Tue Mar 06 07:16:41 2018 -0600
@@ -18,6 +18,7 @@
test-bheads.t
test-bisect.t
test-bisect2.t
+test-bisect3.t
test-blackbox.t
test-bookmarks-current.t
test-bookmarks-merge.t
--- a/mercurial/templatefilters.py Tue Mar 06 07:15:01 2018 -0600
+++ b/mercurial/templatefilters.py Tue Mar 06 07:16:41 2018 -0600
@@ -349,7 +349,7 @@
is not a valid bisection status.
"""
if label:
- return label[0].upper()
+ return label[0:1].upper()
return ' '
@templatefilter('shortdate')