fixed for py3k
diff --git a/OpenSSL/test/test_crypto.py b/OpenSSL/test/test_crypto.py
index 6c8f179..0c906b6 100644
--- a/OpenSSL/test/test_crypto.py
+++ b/OpenSSL/test/test_crypto.py
@@ -2210,7 +2210,7 @@
         """
         A PKCS12 with an empty CA certificates list can be exported.
         """
-        passwd = 'Hobie 18'
+        passwd = b'Hobie 18'
         p12 = self.gen_pkcs12(server_cert_pem, server_key_pem)
         p12.set_ca_certificates([])
         self.assertEqual((), p12.get_ca_certificates())