Mercurial > public > mercurial-scm > hg-stable
diff mercurial/archival.py @ 6913:580d5e6bfc1f
move % out of translatable strings
The translators need to see the raw format string, not the result of
using the format string.
author | Martin Geisler <mg@daimi.au.dk> |
---|---|
date | Sat, 16 Aug 2008 14:46:56 +0200 |
parents | 51b0e799352f |
children | fd3e5ff53a31 |
line wrap: on
line diff
--- a/mercurial/archival.py Tue Aug 12 13:45:48 2008 +0200 +++ b/mercurial/archival.py Sat Aug 16 14:46:56 2008 +0200 @@ -209,7 +209,7 @@ archiver.addfile(name, mode, islink, data) if kind not in archivers: - raise util.Abort(_("unknown archive type '%s'" % kind)) + raise util.Abort(_("unknown archive type '%s'") % kind) ctx = repo[node] archiver = archivers[kind](dest, prefix, mtime or ctx.date()[0])