--- a/.hgtags Thu Aug 01 09:20:40 2019 +0200
+++ b/.hgtags Tue Aug 06 16:43:46 2019 +0200
@@ -643,3 +643,5 @@
4531a266f8b20fa6fd33df32453f77a0141856ae debian/3.26.12-1
1fc684253207b7989ab25ed68468420185f28e59 debian/3.26.13-1
1fc684253207b7989ab25ed68468420185f28e59 3.26.13
+172f683a84f6dbc069298bba811f590afb5e5a43 debian/3.26.14-1
+172f683a84f6dbc069298bba811f590afb5e5a43 3.26.14
--- a/cubicweb/cwconfig.py Thu Aug 01 09:20:40 2019 +0200
+++ b/cubicweb/cwconfig.py Tue Aug 06 16:43:46 2019 +0200
@@ -1248,7 +1248,7 @@
return False
for msg, recipients in msgs:
try:
- smtp.sendmail(fromaddr, recipients, msg.as_string())
+ smtp.sendmail(fromaddr, recipients, msg.as_bytes())
except Exception as ex:
self.exception("error sending mail to %s (%s)",
recipients, ex)
--- a/cubicweb/devtools/testlib.py Thu Aug 01 09:20:40 2019 +0200
+++ b/cubicweb/devtools/testlib.py Tue Aug 06 16:43:46 2019 +0200
@@ -183,7 +183,7 @@
pass
def sendmail(self, fromaddr, recipients, msg):
- MAILBOX.append(Email(fromaddr, recipients, msg))
+ MAILBOX.append(Email(fromaddr, recipients, msg.decode('utf-8')))
cwconfig.SMTP = MockSMTP
--- a/debian/changelog Thu Aug 01 09:20:40 2019 +0200
+++ b/debian/changelog Tue Aug 06 16:43:46 2019 +0200
@@ -35,6 +35,12 @@
-- Denis Laxalde <denis.laxalde@logilab.fr> Wed, 24 Jul 2019 16:08:43 +0200
+cubicweb (3.26.14-1) unstable; urgency=medium
+
+ * New upstream release.
+
+ -- Denis Laxalde <denis.laxalde@logilab.fr> Tue, 06 Aug 2019 15:40:33 +0200
+
cubicweb (3.26.13-1) unstable; urgency=medium
[ Denis Laxalde ]