Browse Source

Merge branch 'master' into feature/better_html_email_parsing

Bastien Sevajol 6 years ago
parent
commit
e66e1d5ed4
2 changed files with 1 additions and 1 deletions
  1. 0 0
      tracim/app.wsgi
  2. 1 1
      tracim/tracim/lib/email_fetcher.py

tracim/wsgi.py → tracim/app.wsgi View File


+ 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, header_title: str) -> typing.Optional[str]:
29
+    def _decode_header(self, git addheader_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])))