summaryrefslogtreecommitdiff
path: root/src/leap/mail/walk.py
diff options
context:
space:
mode:
authorFolker Bernitt <fbernitt@thoughtworks.com>2015-08-11 13:38:56 +0200
committerFolker Bernitt <fbernitt@thoughtworks.com>2015-08-11 13:38:56 +0200
commit68fdc62d4c2792fb7fdea90f1117cf6c6f1c5ffc (patch)
treeac958d48fcc9596f1f6d1d0112788e366cc51dab /src/leap/mail/walk.py
parent521b0621563aad45d2354ff86af698d3c3261fb6 (diff)
[bug] Fix typo in content-transfer-encoding in walk.py.
The get_raw_docs method accesses header field content-transfer-encoding using the string 'content-transfer-type' so the raw doc dict always ends up with that value set to empty string.
Diffstat (limited to 'src/leap/mail/walk.py')
-rw-r--r--src/leap/mail/walk.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/mail/walk.py b/src/leap/mail/walk.py
index f613309..1c74366 100644
--- a/src/leap/mail/walk.py
+++ b/src/leap/mail/walk.py
@@ -99,7 +99,7 @@ def get_raw_docs(msg, parts):
"content-type": headers.get(
'content-type', ''),
"content-transfer-encoding": headers.get(
- 'content-transfer-type', '')
+ 'content-transfer-encoding', '')
} for payload, headers in get_payloads(msg)
if not isinstance(payload, list))