Skip to content

Commit

Permalink
Merge branch 'hotfix/1.1.9'
Browse files Browse the repository at this point in the history
  • Loading branch information
fedelemantuano committed Apr 1, 2017
2 parents 1c8df94 + ef7a782 commit dcfb146
Show file tree
Hide file tree
Showing 4 changed files with 358 additions and 4 deletions.
6 changes: 5 additions & 1 deletion mailparser/mailparser.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,12 @@ def _parse(self):
try:
p = email.message_from_string(epilogue)
parts.append(p)
except TypeError:
log.warning(
"Failed to get epilogue part. Probably malformed.")
except:
log.exception("Failed to get epilogue part")
log.error(
"Failed to get epilogue part. Should check raw mail.")

# walk all mail parts
for p in parts:
Expand Down
2 changes: 1 addition & 1 deletion mailparser/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
limitations under the License.
"""

__version__ = "1.1.8"
__version__ = "1.1.9"

if __name__ == "__main__":
print(__version__)
Loading

0 comments on commit dcfb146

Please sign in to comment.