diff options
author | Matěj Cepl <mcepl@cepl.eu> | 2016-02-29 10:00:18 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@cepl.eu> | 2016-03-20 22:22:37 +0100 |
commit | 91c980f52782653fc382b2957b590566d3e7d220 (patch) | |
tree | e112dff51bb1c7fb567243617effa90735aec4ff /M2Crypto/BIO.py | |
parent | 14f3346f53876c78d6e9e49835556d8174d5067f (diff) | |
download | m2crypto-91c980f52782653fc382b2957b590566d3e7d220.tar.gz |
Fix broken imports (and PEP8ization).
Diffstat (limited to 'M2Crypto/BIO.py')
-rw-r--r-- | M2Crypto/BIO.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/M2Crypto/BIO.py b/M2Crypto/BIO.py index 03f8c57..c4724ad 100644 --- a/M2Crypto/BIO.py +++ b/M2Crypto/BIO.py @@ -4,11 +4,11 @@ from __future__ import absolute_import Copyright (c) 1999-2004 Ng Pheng Siong. All rights reserved.""" -from . import m2 +from M2Crypto import m2 from cStringIO import StringIO # Deprecated -from .m2 import bio_do_handshake as bio_do_ssl_handshake +from M2Crypto.m2 import bio_do_handshake as bio_do_ssl_handshake class BIOError(Exception): |