contrib/perf.py
changeset 42392 4372d56112c9
parent 42385 21c436a3a4e8
child 42460 e4c85e23c9ff
--- a/contrib/perf.py	Wed May 29 10:00:30 2019 -0400
+++ b/contrib/perf.py	Wed May 29 10:00:54 2019 -0400
@@ -969,17 +969,17 @@
     input: options dictionnary with `rev`, `from` and `bse`
     output: (localctx, otherctx, basectx)
     """
-    if opts['from']:
-        fromrev = scmutil.revsingle(repo, opts['from'])
+    if opts[b'from']:
+        fromrev = scmutil.revsingle(repo, opts[b'from'])
         wctx = repo[fromrev]
     else:
         wctx = repo[None]
         # we don't want working dir files to be stat'd in the benchmark, so
         # prime that cache
         wctx.dirty()
-    rctx = scmutil.revsingle(repo, opts['rev'], opts['rev'])
-    if opts['base']:
-        fromrev = scmutil.revsingle(repo, opts['base'])
+    rctx = scmutil.revsingle(repo, opts[b'rev'], opts[b'rev'])
+    if opts[b'base']:
+        fromrev = scmutil.revsingle(repo, opts[b'base'])
         ancestor = repo[fromrev]
     else:
         ancestor = wctx.ancestor(rctx)