Skip to content
This repository has been archived by the owner on Sep 15, 2021. It is now read-only.

Commit

Permalink
Bug 812606 - tagging rebase step shouldn't try to fire vim to resolve…
Browse files Browse the repository at this point in the history
… conflicts. r=bhearsum
  • Loading branch information
Rail Aliiev committed Nov 19, 2012
1 parent 6f3e926 commit d64dc07
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/python/util/hg.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,8 @@ def apply_and_push(localrepo, remote, changer, max_attempts=10,
# After we successfully rebase or strip away heads the push is
# is attempted again at the start of the loop
try:
run_cmd(['hg', 'rebase'], cwd=localrepo)
run_cmd(['hg', '--config', 'ui.merge=internal:merge',
'rebase'], cwd=localrepo)
except subprocess.CalledProcessError, e:
log.debug("Failed to rebase: %s" % str(e))
update(localrepo, branch=branch)
Expand Down

0 comments on commit d64dc07

Please sign in to comment.