Bastien Sevajol 7 years ago
parent
commit
e16a95495d
1 changed files with 1 additions and 1 deletions
  1. 1 1
      tracim/tracim/lib/email_fetcher.py

+ 1 - 1
tracim/tracim/lib/email_fetcher.py View File

@@ -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])))