##// END OF EJS Templates
wrapfunction: use sysstr instead of bytes as argument in "highlight"...
marmoute -
r51673:534c0dad default
parent child Browse files
Show More
@@ -101,8 +101,8 b' def generate_css(web):'
101 101 def extsetup(ui):
102 102 # monkeypatch in the new version
103 103 extensions.wrapfunction(
104 webcommands, b'_filerevision', filerevision_highlight
104 webcommands, '_filerevision', filerevision_highlight
105 105 )
106 extensions.wrapfunction(webcommands, b'annotate', annotate_highlight)
106 extensions.wrapfunction(webcommands, 'annotate', annotate_highlight)
107 107 webcommands.highlightcss = generate_css
108 108 webcommands.__all__.append(b'highlightcss')
General Comments 0
You need to be logged in to leave comments. Login now