diff mercurial/bundlerepo.py @ 6953:63b5f4c73c98

i18n: mark strings for translation in Mercurial
author Martin Geisler <mg@daimi.au.dk>
date Sun, 31 Aug 2008 16:12:02 +0200
parents fb42030d79d6
children 5e13df32fb74
line wrap: on
line diff
--- a/mercurial/bundlerepo.py	Sun Aug 31 16:12:02 2008 +0200
+++ b/mercurial/bundlerepo.py	Sun Aug 31 16:12:02 2008 +0200
@@ -39,7 +39,7 @@
         for chunk, start in chunkpositer():
             size = len(chunk)
             if size < 80:
-                raise util.Abort("invalid changegroup")
+                raise util.Abort(_("invalid changegroup"))
             start += 80
             size -= 80
             node, p1, p2, cs = struct.unpack("20s20s20s20s", chunk[:80])