commit | 5092450ba9c10d78890263bb16afabc801c78de2 | [log] [tgz] |
---|---|---|
author | Jean-Paul Calderone <exarkun@divmod.com> | Thu Aug 27 12:47:55 2009 -0400 |
committer | Jean-Paul Calderone <exarkun@divmod.com> | Thu Aug 27 12:47:55 2009 -0400 |
tree | 9eb17525bc694183044bfad15efe87b2602bfc24 | |
parent | 7b874dbbf3b090932397eb5658afe99bcaad82a6 [diff] [blame] |
Actually use the new quoting function!
diff --git a/test/test_crypto.py b/test/test_crypto.py index 43c69ee..fbe5635 100644 --- a/test/test_crypto.py +++ b/test/test_crypto.py
@@ -1332,7 +1332,7 @@ if os.name == 'posix': command = "openssl " + " ".join(["'%s'" % (arg.replace("'", "'\\''"),) for arg in args]) else: - command = "openssl " + " ".join(args) + command = "openssl " + quoteArguments(args) write, read = popen2(command, "b") write.write(pem) write.close()