diff options
author | Caio Carrara <ccarrara@thoughtworks.com> | 2016-04-11 09:42:40 -0300 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2016-04-11 12:22:36 -0400 |
commit | ec7ccd73dd80b51c349fc6240d5bc2a7a556fbd4 (patch) | |
tree | 20ae03abe020f9a628de28e3353dfb16901b1fdc /src | |
parent | 861b16d49e81a30be9386d529d4a3339d91ff30c (diff) |
Remove leftover print statement
The print statement only printed a number. Seeing the print you cannot
know what was printed. Seems that this line was left during a debug
process.
Diffstat (limited to 'src')
-rw-r--r-- | src/leap/mail/walk.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/leap/mail/walk.py b/src/leap/mail/walk.py index b6fea8d..17349e6 100644 --- a/src/leap/mail/walk.py +++ b/src/leap/mail/walk.py @@ -204,7 +204,6 @@ 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) main_pmap[last_part][PART_MAP][partind] = parts[partind + 1] outer = parts[0] |