commit | c3f7c37f5718b5deb08edb41125d8c7fb3733cfc | [log] [tgz] |
---|---|---|
author | Alex Gaynor <alex.gaynor@gmail.com> | Sat Dec 14 08:58:35 2013 -0800 |
committer | Alex Gaynor <alex.gaynor@gmail.com> | Sat Dec 14 08:58:35 2013 -0800 |
tree | 054bf85a3dd4250b864aa413f31080e0e4589004 | |
parent | badee1b5faf9c6bcc099aee0c6c1d9d29af8b7c7 [diff] |
flake8
diff --git a/cryptography/fernet.py b/cryptography/fernet.py index 3cab547..f2dd934 100644 --- a/cryptography/fernet.py +++ b/cryptography/fernet.py
@@ -89,7 +89,7 @@ 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