Bastien Sevajol 7 年前
父节点
当前提交
e16a95495d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tracim/tracim/lib/email_fetcher.py

+ 1 - 1
tracim/tracim/lib/email_fetcher.py 查看文件

26
     def __init__(self, message: Message) -> None:
26
     def __init__(self, message: Message) -> None:
27
         self._message = message
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
         # FIXME : Handle exception
30
         # FIXME : Handle exception
31
         if header_title in self._message:
31
         if header_title in self._message:
32
             return str(make_header(decode_header(self._message[header_title])))
32
             return str(make_header(decode_header(self._message[header_title])))