diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-10-19 22:33:46 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-10-19 22:33:46 -0700 |
commit | 461c8d286d3cff4b5f5ed962669defa9710e7605 (patch) | |
tree | d10a77615707d68e75166437a444e46423ab7cdf | |
parent | a1a21f46c0ab36fc49b087b2d70751ed23c94724 (diff) | |
download | cryptography-461c8d286d3cff4b5f5ed962669defa9710e7605.tar.gz cryptography-461c8d286d3cff4b5f5ed962669defa9710e7605.tar.bz2 cryptography-461c8d286d3cff4b5f5ed962669defa9710e7605.zip |
eep, stray space
-rw-r--r-- | cryptography/fernet.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cryptography/fernet.py b/cryptography/fernet.py index 153f398b..a8e0330e 100644 --- a/cryptography/fernet.py +++ b/cryptography/fernet.py @@ -90,7 +90,7 @@ class Fernet(object): except (TypeError, binascii.Error): raise InvalidToken - if not data or six.indexbytes(data, 0) != 0x80: + if not data or six.indexbytes(data, 0) != 0x80: raise InvalidToken try: |