From fd11313138d21e0bda7adb2e2145bba128971607 Mon Sep 17 00:00:00 2001 From: Anand Doshi Date: Thu, 2 Feb 2012 14:07:39 +0530 Subject: [PATCH] Support ticket response text fix --- erpnext/support/doctype/support_ticket/support_ticket.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/support/doctype/support_ticket/support_ticket.py b/erpnext/support/doctype/support_ticket/support_ticket.py index 78067d8e04..8c5fc979af 100644 --- a/erpnext/support/doctype/support_ticket/support_ticket.py +++ b/erpnext/support/doctype/support_ticket/support_ticket.py @@ -54,9 +54,9 @@ class DocType(TransactionBase): where name = %s """, self.doc.name) - response_title = "\n\n=== In response to ===\n\n" + response_title = "=== In response to ===" - return response_title + tmp[0][0].split(response_title)[0] + return "\n\n" + response_title + "\n\n" + tmp[0][0].split(response_title)[0] def make_response_record(self, response, from_email = None, content_type='text/plain'): """