# HG changeset patch # User Denis Laxalde # Date 2019-10-24 14:34:43 # Node ID 33506cb43642916b1f7fe24ce8cdd0b46fcc6920 # Parent 416041f97cc333b9a1bf04d10b5502ac78a3f33d py3: decode payload of notify email This fixes one UnicodeEncodeError in test-notify.t:422 when testing the notify hook with non-ascii content (there are more later). We only decode on Python 3, since it's not safe for sure on Python 2. diff --git a/hgext/notify.py b/hgext/notify.py --- a/hgext/notify.py +++ b/hgext/notify.py @@ -400,7 +400,7 @@ class notifier(object): # create fresh mime message from scratch # (multipart templates must take care of this themselves) headers = msg.items() - payload = msg.get_payload() + payload = msg.get_payload(decode=pycompat.ispy3) # for notification prefer readability over data precision msg = mail.mimeencode(self.ui, payload, self.charsets, self.test) # reinstate custom headers