|
@@ -26,7 +26,7 @@ class DecodedMail(object):
|
26
|
26
|
def __init__(self, message: Message) -> None:
|
27
|
27
|
self._message = message
|
28
|
28
|
|
29
|
|
- def _decode_header(self, git addheader_title: str) -> typing.Optional[str]:
|
|
29
|
+ def _decode_header(self, header_title: str) -> typing.Optional[str]:
|
30
|
30
|
# FIXME : Handle exception
|
31
|
31
|
if header_title in self._message:
|
32
|
32
|
return str(make_header(decode_header(self._message[header_title])))
|