From 0a46667a19d70a013e2c50ac6af6c3b17516ce49 Mon Sep 17 00:00:00 2001 From: Ayrx Date: Mon, 24 Feb 2014 00:08:27 +0800 Subject: Added __future__ import statement --- cryptography/hazmat/primitives/twofactor/totp.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cryptography/hazmat/primitives/twofactor/totp.py b/cryptography/hazmat/primitives/twofactor/totp.py index 79752f3b..1327a252 100644 --- a/cryptography/hazmat/primitives/twofactor/totp.py +++ b/cryptography/hazmat/primitives/twofactor/totp.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 + from cryptography.exceptions import InvalidToken from cryptography.hazmat.primitives import constant_time from cryptography.hazmat.primitives.twofactor.hotp import HOTP -- cgit v1.2.3