Mercurial > public > mercurial-scm > hg-stable
diff hgext/rebase.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 | 7cc77030c557 |
children | 8a544fb645bb |
line wrap: on
line diff
--- a/hgext/rebase.py Sat Jan 17 18:08:47 2015 -0800 +++ b/hgext/rebase.py Sat Jan 17 22:01:14 2015 -0200 @@ -198,7 +198,7 @@ if opts.get('interactive'): msg = _("interactive history editing is supported by the " - "'histedit' extension (see 'hg help histedit')") + "'histedit' extension (see \"hg help histedit\")") raise util.Abort(msg) if collapsemsg and not collapsef: @@ -327,7 +327,7 @@ if not keepf and not repo[root].mutable(): raise util.Abort(_("can't rebase immutable changeset %s") % repo[root], - hint=_('see hg help phases for details')) + hint=_('see "hg help phases" for details')) originalwd, target, state = result if collapsef: @@ -858,7 +858,7 @@ if immutable: repo.ui.warn(_("warning: can't clean up immutable changesets %s\n") % ', '.join(str(repo[r]) for r in immutable), - hint=_('see hg help phases for details')) + hint=_('see "hg help phases" for details')) cleanup = False descendants = set()