aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2014-02-23 09:49:25 -0600
committerPaul Kehrer <paul.l.kehrer@gmail.com>2014-02-23 09:49:25 -0600
commitad563bf627a5ea60a68bf6645ea0bc79728c99ee (patch)
tree90592c36d098b77ce8ece723ab178dcf582814af
parentf7cf6ab4e09eb9c7f63e7a154beaec406a4d025f (diff)
downloadcryptography-ad563bf627a5ea60a68bf6645ea0bc79728c99ee.tar.gz
cryptography-ad563bf627a5ea60a68bf6645ea0bc79728c99ee.tar.bz2
cryptography-ad563bf627a5ea60a68bf6645ea0bc79728c99ee.zip
add missing future import to hotp
-rw-r--r--cryptography/hazmat/primitives/twofactor/hotp.py2
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