From 334282f26335cc5a9dc8e29d5e8f87820eb9bd23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Barrag=C3=A1n=20Merino?= Date: Tue, 23 Feb 2016 12:31:52 +0100 Subject: [PATCH] [Backport] Fix a problem with mandrill email backend --- taiga/projects/notifications/services.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/taiga/projects/notifications/services.py b/taiga/projects/notifications/services.py index b7223fba..2725f413 100644 --- a/taiga/projects/notifications/services.py +++ b/taiga/projects/notifications/services.py @@ -466,4 +466,4 @@ def make_ms_thread_index(msg_id, dt): thread_bin += md5.digest() # base64 encode - return base64.b64encode(thread_bin) + return str(base64.b64encode(thread_bin))