hgext/rebase.py
changeset 23917 3cbb5bf4035d
parent 23877 7cc77030c557
child 23970 8a544fb645bb
--- 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()