Mercurial > p > roundup > code
view tools/base64 @ 4515:6467fd9a3afd
The PostgreSQL backend quotes database names now for CREATE and DROP...
...enabling more exotic tracker names. Closes issue2550497.
Thanks to Sebastian Harl for providing the patch.
| author | Bernhard Reiter <Bernhard.Reiter@intevation.de> |
|---|---|
| date | Fri, 01 Jul 2011 15:17:32 +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()))
