commit | 02cde737cad9fba41786305f5dc5e4cee5dc8e0e | [log] [tgz] |
---|---|---|
author | Jean-Paul Calderone <exarkun@divmod.com> | Mon May 04 18:59:04 2009 -0400 |
committer | Jean-Paul Calderone <exarkun@divmod.com> | Mon May 04 18:59:04 2009 -0400 |
tree | 983b70cfdba3c1c557503a7ac6aa07fa67abb21a | |
parent | 16c4d5e05a3e9cea313046827c03d5387d608cf4 [diff] | |
parent | fd236f39317d7f2a62ea528377bc9ab0121231bb [diff] |
woops I accidentally diverged this branch/these branches
diff --git a/test/test_crypto.py b/test/test_crypto.py index 214a4b8..87e9048 100644 --- a/test/test_crypto.py +++ b/test/test_crypto.py
@@ -732,7 +732,7 @@ Run the command line openssl tool with the given arguments and write the given PEM to its stdin. """ - write, read = popen2(" ".join(("openssl",) + args)) + write, read = popen2(" ".join(("openssl",) + args), "b") write.write(pem) write.close() return read.read()