diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-23 09:49:25 -0600 |
---|---|---|
committer | Paul Kehrer <paul.l.kehrer@gmail.com> | 2014-02-23 09:49:25 -0600 |
commit | ad563bf627a5ea60a68bf6645ea0bc79728c99ee (patch) | |
tree | 90592c36d098b77ce8ece723ab178dcf582814af | |
parent | f7cf6ab4e09eb9c7f63e7a154beaec406a4d025f (diff) | |
download | cryptography-ad563bf627a5ea60a68bf6645ea0bc79728c99ee.tar.gz cryptography-ad563bf627a5ea60a68bf6645ea0bc79728c99ee.tar.bz2 cryptography-ad563bf627a5ea60a68bf6645ea0bc79728c99ee.zip |
add missing future import to hotp
-rw-r--r-- | cryptography/hazmat/primitives/twofactor/hotp.py | 2 |
1 files changed, 2 insertions, 0 deletions
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 |