Mercurial > p > roundup > code
view tools/base64 @ 4941:b76710818d31
Roundup Tracker isssue #: 2550857
Remove pair of single quotes that breaks the "Provisional User"
customization example.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Mon, 20 Oct 2014 14:10:32 -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()))
