Mercurial > p > roundup > code
view tools/base64 @ 5174:a76fbb9f5535
Fix Traceback in backends/portalocker.py (windows)
.. due to missing windll import, thanks to Heiko Stegmann for suggesting
a first fix.
| author | Ralf Schlatterbeck <rsc@runtux.com> |
|---|---|
| date | Fri, 09 Dec 2016 10:52:59 +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()))
