Mercurial > hg
changeset 12774:642afc8f50e7
cmdutil: mark string for i18n
author | Wagner Bruna <wbruna@softwareexpress.com.br> |
---|---|
date | Wed, 20 Oct 2010 12:29:41 -0200 |
parents | 98aaf58a1d7c |
children | cbbcabde2414 |
files | mercurial/cmdutil.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/cmdutil.py Thu Oct 14 10:56:39 2010 +0300 +++ b/mercurial/cmdutil.py Wed Oct 20 12:29:41 2010 -0200 @@ -117,7 +117,7 @@ l = revrange(repo, [revspec]) if len(l) < 1: - raise util.Abort("empty revision set") + raise util.Abort(_('empty revision set')) return repo[l[-1]] def revpair(repo, revs):