From ad563bf627a5ea60a68bf6645ea0bc79728c99ee Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Sun, 23 Feb 2014 09:49:25 -0600 Subject: add missing future import to hotp --- cryptography/hazmat/primitives/twofactor/hotp.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cryptography/hazmat/primitives/twofactor/hotp.py b/cryptography/hazmat/primitives/twofactor/hotp.py index 0bc4cc56..535a94c7 100644 --- a/cryptography/hazmat/primitives/twofactor/hotp.py +++ b/cryptography/hazmat/primitives/twofactor/hotp.py @@ -11,6 +11,8 @@ # See the License for the specific language governing permissions and # limitations under the License. +from __future__ import absolute_import, division, print_function + import struct import six -- cgit v1.2.3