##// END OF EJS Templates
perf: explicitly pass title as a keyword argument in `perfdiffwd`...
Boris Feld -
r40715:20d2fd60 default
parent child Browse files
Show More
@@ -1404,7 +1404,7 b' def perfdiffwd(ui, repo, **opts):'
1404 ui.popbuffer()
1404 ui.popbuffer()
1405 diffopt = diffopt.encode('ascii')
1405 diffopt = diffopt.encode('ascii')
1406 title = b'diffopts: %s' % (diffopt and (b'-' + diffopt) or b'none')
1406 title = b'diffopts: %s' % (diffopt and (b'-' + diffopt) or b'none')
1407 timer(d, title)
1407 timer(d, title=title)
1408 fm.end()
1408 fm.end()
1409
1409
1410 @command(b'perfrevlogindex', revlogopts + formatteropts,
1410 @command(b'perfrevlogindex', revlogopts + formatteropts,
General Comments 0
You need to be logged in to leave comments. Login now