diff -r e079e001d536 -r 5f2f6912c9e6 mercurial/cmdutil.py --- a/mercurial/cmdutil.py Mon Jun 24 16:01:22 2019 -0700 +++ b/mercurial/cmdutil.py Sat Jun 08 23:43:53 2019 +0530 @@ -42,6 +42,7 @@ rewriteutil, scmutil, smartset, + state as statemod, subrepoutil, templatekw, templater, @@ -3313,17 +3314,6 @@ # - (desturl, destbranch, destpeer, outgoing) summaryremotehooks = util.hooks() -# A list of state files kept by multistep operations like graft. -# Since graft cannot be aborted, it is considered 'clearable' by update. -# note: bisect is intentionally excluded -# (state file, clearable, allowcommit, error, hint) -unfinishedstates = [ - ('graftstate', True, False, _('graft in progress'), - _("use 'hg graft --continue' or 'hg graft --stop' to stop")), - ('updatestate', True, False, _('last update was interrupted'), - _("use 'hg update' to get a consistent checkout")) - ] - def checkunfinished(repo, commit=False): '''Look for an unfinished multistep operation, like graft, and abort if found. It's probably good to check this right before @@ -3331,13 +3321,13 @@ ''' # Check for non-clearable states first, so things like rebase will take # precedence over update. - for f, clearable, allowcommit, msg, hint in unfinishedstates: + for f, clearable, allowcommit, msg, hint in statemod.unfinishedstates: if clearable or (commit and allowcommit): continue if repo.vfs.exists(f): raise error.Abort(msg, hint=hint) - for f, clearable, allowcommit, msg, hint in unfinishedstates: + for f, clearable, allowcommit, msg, hint in statemod.unfinishedstates: if not clearable or (commit and allowcommit): continue if repo.vfs.exists(f): @@ -3347,10 +3337,10 @@ '''Check for unfinished operations (as above), and clear the ones that are clearable. ''' - for f, clearable, allowcommit, msg, hint in unfinishedstates: + for f, clearable, allowcommit, msg, hint in statemod.unfinishedstates: if not clearable and repo.vfs.exists(f): raise error.Abort(msg, hint=hint) - for f, clearable, allowcommit, msg, hint in unfinishedstates: + for f, clearable, allowcommit, msg, hint in statemod.unfinishedstates: if clearable and repo.vfs.exists(f): util.unlink(repo.vfs.join(f))