diff -r a3f7c781786b -r 3cbb5bf4035d mercurial/localrepo.py --- a/mercurial/localrepo.py Sat Jan 17 18:08:47 2015 -0800 +++ b/mercurial/localrepo.py Sat Jan 17 22:01:14 2015 -0200 @@ -1367,8 +1367,8 @@ ms = mergemod.mergestate(self) for f in status.modified: if f in ms and ms[f] == 'u': - raise util.Abort(_("unresolved merge conflicts " - "(see hg help resolve)")) + raise util.Abort(_('unresolved merge conflicts ' + '(see "hg help resolve")')) if editor: cctx._text = editor(self, cctx, subs)