# HG changeset patch # User Boris Feld # Date 1542800807 0 # Node ID 3c98c339c6ea060ce93a60e44e6be1f91e343f0c # Parent d98fb3f42f33054a6ca90a133abfd2d26c438da0 perf: fix a minor typo in perfbranchmapload diff -r d98fb3f42f33 -r 3c98c339c6ea contrib/perf.py --- a/contrib/perf.py Wed Oct 10 00:50:37 2018 +0200 +++ b/contrib/perf.py Wed Nov 21 11:46:47 2018 +0000 @@ -2244,7 +2244,7 @@ repo = repo.unfiltered() # try once without timer, the filter may not be cached if branchmap.read(repo) is None: - raise error.Abort(b'No brachmap cached for %s repo' + raise error.Abort(b'No branchmap cached for %s repo' % (filter or b'unfiltered')) timer, fm = gettimer(ui, opts) timer(lambda: branchmap.read(repo) and None)