contrib/perf.py
changeset 46196 96b73671753a
parent 45942 89a2afe31e82
child 46255 cce05a6c271f
--- a/contrib/perf.py	Thu Jan 07 14:15:24 2021 +0100
+++ b/contrib/perf.py	Wed Jan 06 19:41:15 2021 +0100
@@ -1627,12 +1627,12 @@
     mercurial.revlog._prereadsize = 2 ** 24  # disable lazy parser in old hg
 
     unfi = repo.unfiltered()
-    clearcaches = opts['clear_caches']
+    clearcaches = opts[b'clear_caches']
     # find the filecache func directly
     # This avoid polluting the benchmark with the filecache logic
     makecl = unfi.__class__.changelog.func
     if not opts[b'rev']:
-        raise error.Abort('use --rev to specify revisions to look up')
+        raise error.Abort(b'use --rev to specify revisions to look up')
     revs = scmutil.revrange(repo, opts[b'rev'])
     cl = repo.changelog
     nodes = [cl.node(r) for r in revs]