Mercurial > p > roundup > code
view tools/base64 @ 5286:578b5294e888
Update to current classic config. Fixes issue with users being able to
see all queries even ones that they do not own and are not public.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Sun, 24 Sep 2017 19:13:04 -0400 |
| 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()))
