From bd4d0e45ca6575b3a6488824c85fc56196dba4c8 Mon Sep 17 00:00:00 2001 From: Manas Solanki Date: Tue, 18 Jul 2017 17:51:26 +0530 Subject: [PATCH 1/2] fix error in email queue (#3728) --- frappe/email/queue.py | 1 + 1 file changed, 1 insertion(+) diff --git a/frappe/email/queue.py b/frappe/email/queue.py index dbbec7bd12..be7f3f9f7d 100755 --- a/frappe/email/queue.py +++ b/frappe/email/queue.py @@ -495,6 +495,7 @@ def prepare_message(email, recipient, recipients_list): 'fcontent': fcontent, 'parent': msg_obj }) + attachment.pop("fid", None) add_attachment(**attachment) return msg_obj.as_string() From 4ee880a55b8c82925e42d8aae81be922bf589fab Mon Sep 17 00:00:00 2001 From: mbauskar Date: Tue, 18 Jul 2017 18:21:59 +0600 Subject: [PATCH 2/2] bumped to version 8.5.3 --- frappe/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/__init__.py b/frappe/__init__.py index 8b6c21062a..66cdc9fc52 100644 --- a/frappe/__init__.py +++ b/frappe/__init__.py @@ -14,7 +14,7 @@ import os, sys, importlib, inspect, json from .exceptions import * from .utils.jinja import get_jenv, get_template, render_template, get_email_from_template -__version__ = '8.5.2' +__version__ = '8.5.3' __title__ = "Frappe Framework" local = Local()