From b05f1a68f5ea0d67f0f486133825887b476ca42e Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Sat, 4 Feb 2012 16:22:21 +0530 Subject: [PATCH] support ticket send issue --- erpnext/support/doctype/support_ticket/support_ticket.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/support/doctype/support_ticket/support_ticket.py b/erpnext/support/doctype/support_ticket/support_ticket.py index 94f978874d..383e0b2d3f 100644 --- a/erpnext/support/doctype/support_ticket/support_ticket.py +++ b/erpnext/support/doctype/support_ticket/support_ticket.py @@ -36,7 +36,7 @@ class DocType(TransactionBase): recipients = [self.doc.raised_by], \ sender=webnotes.conn.get_value('Email Settings',None,'support_email'), \ subject=subject, \ - msg=response.encode('utf-8')) + msg=response) self.doc.new_response = None webnotes.conn.set(self.doc,'status','Waiting for Customer')