Mercurial > public > mercurial-scm > hg-stable
diff mercurial/localrepo.py @ 23917:3cbb5bf4035d
messages: quote "hg help" hints consistently
author | Wagner Bruna <wbruna@yahoo.com> |
---|---|
date | Sat, 17 Jan 2015 22:01:14 -0200 |
parents | 426607be9c69 |
children | a43fdf33a6be |
line wrap: on
line diff
--- 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)