aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Gaynor <alex.gaynor@gmail.com>2014-02-23 10:17:29 -0600
committerAlex Gaynor <alex.gaynor@gmail.com>2014-02-23 10:17:29 -0600
commit2d4f36a2246580466f3c1c6e027f03bb9b265960 (patch)
tree90592c36d098b77ce8ece723ab178dcf582814af
parentf7cf6ab4e09eb9c7f63e7a154beaec406a4d025f (diff)
parentad563bf627a5ea60a68bf6645ea0bc79728c99ee (diff)
downloadcryptography-2d4f36a2246580466f3c1c6e027f03bb9b265960.tar.gz
cryptography-2d4f36a2246580466f3c1c6e027f03bb9b265960.tar.bz2
cryptography-2d4f36a2246580466f3c1c6e027f03bb9b265960.zip
Merge pull request #672 from reaperhulk/add-future-import-hotp
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