##// END OF EJS Templates
perfbranchmap: display 'unfiltered' for unfiltered performance...
Boris Feld -
r36379:df3f7f00 default
parent child Browse files
Show More
@@ -1616,7 +1616,10 b' def perfbranchmap(ui, repo, full=False, '
1616 branchcachewrite.set(lambda bc, repo: None)
1616 branchcachewrite.set(lambda bc, repo: None)
1617 try:
1617 try:
1618 for name in allfilters:
1618 for name in allfilters:
1619 timer(getbranchmap(name), title=str(name))
1619 printname = name
1620 if name is None:
1621 printname = 'unfiltered'
1622 timer(getbranchmap(name), title=str(printname))
1620 finally:
1623 finally:
1621 branchcacheread.restore()
1624 branchcacheread.restore()
1622 branchcachewrite.restore()
1625 branchcachewrite.restore()
General Comments 0
You need to be logged in to leave comments. Login now