From c3f7c37f5718b5deb08edb41125d8c7fb3733cfc Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Sat, 14 Dec 2013 08:58:35 -0800 Subject: flake8 --- cryptography/fernet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cryptography/fernet.py b/cryptography/fernet.py index 3cab5479..f2dd9341 100644 --- a/cryptography/fernet.py +++ b/cryptography/fernet.py @@ -89,7 +89,7 @@ class Fernet(object): iv = data[9:25] ciphertext = data[25:-32] if ttl is not None: - if timestamp + ttl < current_time: + if timestamp + ttl < current_time: raise InvalidToken if current_time + _MAX_CLOCK_SKEW < timestamp: raise InvalidToken -- cgit v1.2.3