From 3af67fb2c32054883f7acb07902b35013515be43 Mon Sep 17 00:00:00 2001 From: bcornwellmott Date: Mon, 31 Oct 2016 08:53:37 -0700 Subject: [PATCH] Fix syntax --- .../doctype/request_for_quotation/request_for_quotation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py b/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py index c3ed6323f8..802888d57a 100644 --- a/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py +++ b/erpnext/buying/doctype/request_for_quotation/request_for_quotation.py @@ -132,7 +132,7 @@ class RequestforQuotation(BuyingController): def send_email(self, data, sender, subject, message, attachments): make(subject = subject, content=message,recipients=data.email_id, sender=sender,attachments = attachments, send_email=True, -+ doctype=self.doctype, name = self.name)["name"] + doctype=self.doctype, name=self.name)["name"] frappe.msgprint(_("Email sent to supplier {0}").format(data.supplier))