cmdutil: mark string for i18n
authorWagner Bruna <wbruna@softwareexpress.com.br>
Wed, 20 Oct 2010 12:29:41 -0200
changeset 12774 642afc8f50e7
parent 12773 98aaf58a1d7c
child 12775 cbbcabde2414
cmdutil: mark string for i18n
mercurial/cmdutil.py
--- 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):