##// END OF EJS Templates
wrapfunction: use sysstr instead of bytes as argument in "fastannotate"...
marmoute -
r51670:8dc2724d default
parent child Browse files
Show More
@@ -101,7 +101,7 b' def _registerwireprotocommand():'
101
101
102 def serveruisetup(ui):
102 def serveruisetup(ui):
103 _registerwireprotocommand()
103 _registerwireprotocommand()
104 extensions.wrapfunction(wireprotov1server, b'_capabilities', _capabilities)
104 extensions.wrapfunction(wireprotov1server, '_capabilities', _capabilities)
105
105
106
106
107 # client-side
107 # client-side
@@ -129,8 +129,8 b' def _remotefctxannotate(orig, self, foll'
129
129
130
130
131 def replacehgwebannotate():
131 def replacehgwebannotate():
132 extensions.wrapfunction(hgweb.webutil, b'annotate', _hgwebannotate)
132 extensions.wrapfunction(hgweb.webutil, 'annotate', _hgwebannotate)
133
133
134
134
135 def replacefctxannotate():
135 def replacefctxannotate():
136 extensions.wrapfunction(hgcontext.basefilectx, b'annotate', _fctxannotate)
136 extensions.wrapfunction(hgcontext.basefilectx, 'annotate', _fctxannotate)
General Comments 0
You need to be logged in to leave comments. Login now