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