contrib/perf.py
changeset 43130 c88075eb28e3
parent 43129 97f9ef777a75
child 43160 84a950007619
--- a/contrib/perf.py	Tue Oct 08 01:49:34 2019 -0400
+++ b/contrib/perf.py	Tue Oct 08 02:19:04 2019 -0400
@@ -1192,11 +1192,13 @@
     ds = repo.dirstate
     b"a" in ds
 
+    def setup():
+        ds._dirty = True
+
     def d():
-        ds._dirty = True
         ds.write(repo.currenttransaction())
 
-    timer(d)
+    timer(d, setup=setup)
     fm.end()