summaryrefslogtreecommitdiff
path: root/M2Crypto/BIO.py
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@cepl.eu>2016-02-29 10:00:18 +0100
committerMatěj Cepl <mcepl@cepl.eu>2016-03-20 22:22:37 +0100
commit91c980f52782653fc382b2957b590566d3e7d220 (patch)
treee112dff51bb1c7fb567243617effa90735aec4ff /M2Crypto/BIO.py
parent14f3346f53876c78d6e9e49835556d8174d5067f (diff)
downloadm2crypto-91c980f52782653fc382b2957b590566d3e7d220.tar.gz
Fix broken imports (and PEP8ization).
Diffstat (limited to 'M2Crypto/BIO.py')
-rw-r--r--M2Crypto/BIO.py4
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):