Mercurial > public > mercurial-scm > hg-stable
diff hgext/rebase.py @ 29970:11604da46982
rebase: use single quotes in use warning
author | timeless <timeless@mozdev.org> |
---|---|
date | Tue, 20 Sep 2016 23:44:28 +0000 |
parents | 3e7ded768556 |
children | aca0954d3739 |
line wrap: on
line diff
--- a/hgext/rebase.py Tue Sep 20 20:12:38 2016 +0000 +++ b/hgext/rebase.py Tue Sep 20 23:44:28 2016 +0000 @@ -296,7 +296,7 @@ if not self.keepf and not self.repo[root].mutable(): raise error.Abort(_("can't rebase public changeset %s") % self.repo[root], - hint=_('see "hg help phases" for details')) + hint=_("see 'hg help phases' for details")) (self.originalwd, self.target, self.state) = result if self.collapsef: @@ -1128,7 +1128,7 @@ if immutable: repo.ui.warn(_("warning: can't clean up public 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()