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 | 317cdf3e126fda6f4504ad8b18095f6f36266f9f (patch) | |
tree | 46d2cd13239279366c7aa81a46e55f19367c7b30 /mail/src | |
parent | 54aafd3b12764940f6484e49dae6f93a44a25b43 (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 'mail/src')
-rw-r--r-- | mail/src/leap/mail/walk.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mail/src/leap/mail/walk.py b/mail/src/leap/mail/walk.py index b6fea8d..17349e6 100644 --- a/mail/src/leap/mail/walk.py +++ b/mail/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] |