diff options
author | Bruno Wagner <bwgpro@gmail.com> | 2015-07-21 19:16:53 -0300 |
---|---|---|
committer | Bruno Wagner <bwgpro@gmail.com> | 2015-07-21 19:17:46 -0300 |
commit | 6ab67b4c69be4d3f3fb34dd3f76cd36822e7e1ca (patch) | |
tree | 5e84bf46c4eef5d8d9f6c0724904e8e8aa9e4b5f /src/leap/mail/walk.py | |
parent | a36a3bd419bdf33d66ed77277089db537e8b7b36 (diff) |
Fixed all the pep8 warnings in the code
Diffstat (limited to 'src/leap/mail/walk.py')
-rw-r--r-- | src/leap/mail/walk.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/mail/walk.py b/src/leap/mail/walk.py index 9f5098d..6d79b83 100644 --- a/src/leap/mail/walk.py +++ b/src/leap/mail/walk.py @@ -187,7 +187,7 @@ def walk_msg_tree(parts, body_phash=None): last_part = max(main_pmap.keys()) main_pmap[last_part][PART_MAP] = {} for partind in range(len(pv) - 1): - print partind+1, len(parts) + print partind + 1, len(parts) main_pmap[last_part][PART_MAP][partind] = parts[partind + 1] outer = parts[0] |