aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAyrx <terrycwk1994@gmail.com>2014-02-24 00:08:27 +0800
committerAyrx <terrycwk1994@gmail.com>2014-02-25 10:36:32 +0800
commit0a46667a19d70a013e2c50ac6af6c3b17516ce49 (patch)
tree30fc7ff069612393655fac4da1a328f81c1e7e32
parent3b6423dc2a10320d739554e88c1384a8e8a068c2 (diff)
downloadcryptography-0a46667a19d70a013e2c50ac6af6c3b17516ce49.tar.gz
cryptography-0a46667a19d70a013e2c50ac6af6c3b17516ce49.tar.bz2
cryptography-0a46667a19d70a013e2c50ac6af6c3b17516ce49.zip
Added __future__ import statement
-rw-r--r--cryptography/hazmat/primitives/twofactor/totp.py2
1 files changed, 2 insertions, 0 deletions
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