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 | 58fef87b46cf6a86f09a108a6e3112b7726c19b6 (patch) | |
| tree | 1aec0d7f5fc878ea016651724ed5342ed496a4a0 /mail/src/leap | |
| parent | 5639a5be10f01d95a5d978c807d4af2ac6a91288 (diff) | |
| parent | 493b7151c33b243d4aa83f401005c391b8d5c89e (diff) | |
Merge remote-tracking branch 'refs/remotes/kali/yet-another-pep8-fix' into develop
Diffstat (limited to 'mail/src/leap')
| -rw-r--r-- | mail/src/leap/mail/imap/fetch.py | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/mail/src/leap/mail/imap/fetch.py b/mail/src/leap/mail/imap/fetch.py index 14f7a9b..7cecaba 100644 --- a/mail/src/leap/mail/imap/fetch.py +++ b/mail/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) | 
