[fix] support ticket feed

This commit is contained in:
Rushabh Mehta 2014-09-29 12:48:31 +05:30
parent 66e08e39f7
commit 3ef0b7ce99

View File

@ -10,7 +10,7 @@ from frappe.utils import now
class SupportTicket(Document):
def get_feed(self):
return "{0}: {1}".format(_(self.status, self.subject))
return "{0}: {1}".format(_(self.status), self.subject)
def get_portal_page(self):
return "ticket"