##// END OF EJS Templates
wrapfunction: use sysstr instead of bytes as argument in "perf"...
marmoute -
r51688:193a6e9a default
parent child Browse files
Show More
@@ -4421,7 +4421,8 b' def uisetup(ui):'
4421 )
4421 )
4422 return orig(repo, cmd, file_, opts)
4422 return orig(repo, cmd, file_, opts)
4423
4423
4424 extensions.wrapfunction(cmdutil, b'openrevlog', openrevlog)
4424 name = _sysstr(b'openrevlog')
4425 extensions.wrapfunction(cmdutil, name, openrevlog)
4425
4426
4426
4427
4427 @command(
4428 @command(
General Comments 0
You need to be logged in to leave comments. Login now