##// END OF EJS Templates
update: don't translate the abort message twice...
Javi Merino -
r16230:d4d35fd0 stable
parent child Browse files
Show More
@@ -4269,7 +4269,7 b' def postincoming(ui, repo, modheads, opt'
4269 try:
4269 try:
4270 ret = hg.update(repo, checkout)
4270 ret = hg.update(repo, checkout)
4271 except util.Abort, inst:
4271 except util.Abort, inst:
4272 ui.warn(_("not updating: %s\n" % str(inst)))
4272 ui.warn(_("not updating: %s\n") % str(inst))
4273 return 0
4273 return 0
4274 if not ret and not checkout:
4274 if not ret and not checkout:
4275 if bookmarks.update(repo, [movemarkfrom], repo['.'].node()):
4275 if bookmarks.update(repo, [movemarkfrom], repo['.'].node()):
General Comments 0
You need to be logged in to leave comments. Login now