Mercurial > p > roundup > code
view tools/base64 @ 4529:8bd956bef7c3
issue2550695: 'No sort or group' settings not retained when editing queries.
Reported and fixed by John Kristensen. Tested by Satchidanand Haridas.
| author | Bernhard Reiter <Bernhard.Reiter@intevation.de> |
|---|---|
| date | Tue, 19 Jul 2011 07:54:22 +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()))
