htmlui: don't pass bytes to extensions.wrapfunction()

hg 6.6 no longer accepts bytes, and older hg versions appear to be okay with
unicode function name.
1 files changed, 1 insertions(+), 1 deletions(-)

M hgext3rd/htmlui.py
M hgext3rd/htmlui.py +1 -1
@@ 46,7 46,7 @@ def _colorsetup(orig, ui):
     ui._colormode = b'html'
 
 def uisetup(ui):
-    extensions.wrapfunction(colormod, b'setup', _colorsetup)
+    extensions.wrapfunction(colormod, 'setup', _colorsetup)
 
     class htmlui(ui.__class__):
         def __init__(self, src=None):