diff options
author | Tomás Touceda <chiiph@leap.se> | 2013-12-10 14:18:30 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2013-12-10 14:18:30 -0300 |
commit | 9f4c2f6603c50e25af31ee4b9df386d01fcc8990 (patch) | |
tree | 5aea5b6a1474277d0e7567b4b96dc1e0da80d89b | |
parent | a70a6745ae92b4fa88151318072388eb6d60e0b8 (diff) | |
parent | b42c58056e6734cc242142b6f1583976ef9247a4 (diff) |
Merge remote-tracking branch 'refs/remotes/kali/yet-another-pep8-fix' into develop
-rw-r--r-- | src/leap/mail/imap/fetch.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/mail/imap/fetch.py b/src/leap/mail/imap/fetch.py index 14f7a9b..7cecaba 100644 --- a/src/leap/mail/imap/fetch.py +++ b/src/leap/mail/imap/fetch.py @@ -511,7 +511,7 @@ class LeapIncomingMail(object): if PGP_BEGIN in data: begin = data.find(PGP_BEGIN) end = data.find(PGP_END) - pgp_message = data[begin:end+len(PGP_END)] + pgp_message = data[begin:end + len(PGP_END)] try: decrdata, valid_sig = self._decrypt_and_verify_data( pgp_message, senderPubkey) |