##// END OF EJS Templates
perf: fix perfhelper-pathcopies without --stats...
marmoute -
r43273:bbf77341 default
parent child Browse files
Show More
@@ -1814,6 +1814,7 b' def perfhelperpathcopies(ui, repo, revs='
1814 b'nbrevs': len(repo.revs('%d::%d', b, p)),
1814 b'nbrevs': len(repo.revs('%d::%d', b, p)),
1815 b'nbmissingfiles': len(missing),
1815 b'nbmissingfiles': len(missing),
1816 }
1816 }
1817 if dostats:
1817 alldata['nbrevs'].append((
1818 alldata['nbrevs'].append((
1818 data['nbrevs'],
1819 data['nbrevs'],
1819 base.hex(),
1820 base.hex(),
@@ -1831,6 +1832,7 b' def perfhelperpathcopies(ui, repo, revs='
1831 # not very stable timing since we did only one run
1832 # not very stable timing since we did only one run
1832 data['time'] = end - begin
1833 data['time'] = end - begin
1833 data['nbrenamedfiles'] = len(renames)
1834 data['nbrenamedfiles'] = len(renames)
1835 if dostats:
1834 alldata['time'].append((
1836 alldata['time'].append((
1835 data['time'],
1837 data['time'],
1836 base.hex(),
1838 base.hex(),
General Comments 0
You need to be logged in to leave comments. Login now