Mercurial > public > mercurial-scm > hg
comparison hgext/rebase.py @ 15945:cd42f77d30c4 stable
rebase: drop uppercase in abort message
author | Wagner Bruna <wbruna@softwareexpress.com.br> |
---|---|
date | Fri, 20 Jan 2012 12:04:45 -0200 |
parents | 4b088ae9d47a |
children | 5b41d5ad52bf |
comparison
equal
deleted
inserted
replaced
15944:f19d5c852f9b | 15945:cd42f77d30c4 |
---|---|
208 raise util.Abort( | 208 raise util.Abort( |
209 _("can't remove original changesets with" | 209 _("can't remove original changesets with" |
210 " unrebased descendants"), | 210 " unrebased descendants"), |
211 hint=_('use --keep to keep original changesets')) | 211 hint=_('use --keep to keep original changesets')) |
212 elif not keepf and not repo[root].mutable(): | 212 elif not keepf and not repo[root].mutable(): |
213 raise util.Abort(_("Can't rebase immutable changeset %s") | 213 raise util.Abort(_("can't rebase immutable changeset %s") |
214 % repo[root], | 214 % repo[root], |
215 hint=_('see hg help phases for details')) | 215 hint=_('see hg help phases for details')) |
216 else: | 216 else: |
217 result = buildstate(repo, dest, rebaseset, detachf) | 217 result = buildstate(repo, dest, rebaseset, detachf) |
218 | 218 |