Mercurial > p > roundup > code
view tools/base64 @ 4580:782737d1a2d7
issue2431638 wrong registration link in bounce mail.
For non-registered we used a wrong link to the registration page.
| author | Ralf Schlatterbeck <rsc@runtux.com> |
|---|---|
| date | Thu, 05 Jan 2012 21:47:34 +0100 |
| 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()))
