Mercurial > p > roundup > code
view tools/base64 @ 4198:e002ef0ee0db
fix generation of locale: fr.po is latin-1 and was specified as utf-8
This *should* fix issue2550546 -- at least I can now say "make" in the
locale directory without errors.
| author | Ralf Schlatterbeck <schlatterbeck@users.sourceforge.net> |
|---|---|
| date | Thu, 09 Jul 2009 15:32:57 +0000 |
| parents | 740102dfad1d |
| children | c75defc1c2f0 |
line wrap: on
line source
#!/usr/bin/env python import zlib, base64, sys print base64.encodestring(zlib.compress(sys.stdin.read()))
