Mercurial > hg
changeset 30123:2e360578688d
bisect: rename 'check_code' to match our naming scheme
We need to do it early, otherwise 'check-commit' will complain every time we
touch it.
author | Pierre-Yves David <pierre-yves.david@ens-lyon.org> |
---|---|
date | Sun, 09 Oct 2016 03:50:55 +0200 |
parents | b710dca9937a |
children | 0aea706060cc |
files | mercurial/commands.py |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/commands.py Wed Aug 24 04:48:17 2016 +0200 +++ b/mercurial/commands.py Sun Oct 09 03:50:55 2016 +0200 @@ -835,7 +835,7 @@ Returns 0 on success. """ - def check_state(state, interactive=True): + def checkstate(state, interactive=True): if not state['good'] or not state['bad']: if (good or bad or skip or reset) and interactive: return @@ -913,7 +913,7 @@ rev = None # clear for future iterations state[transition].append(ctx.node()) ui.status(_('changeset %d:%s: %s\n') % (ctx, ctx, transition)) - check_state(state, interactive=False) + checkstate(state, interactive=False) # bisect nodes, changesets, bgood = hbisect.bisect(repo.changelog, state) # update to next check @@ -928,7 +928,7 @@ hbisect.printresult(ui, repo, state, displayer, nodes, bgood) return - if not check_state(state): + if not checkstate(state): return # actually bisect