commit | dc2f388e586986db49a1a4cf7c4b6f3285d6e09f | [log] [tgz] |
---|---|---|
author | Rushabh Mehta <rmehta@gmail.com> | Thu Aug 11 09:36:30 2011 +0530 |
committer | Rushabh Mehta <rmehta@gmail.com> | Thu Aug 11 09:36:30 2011 +0530 |
tree | c8f4fd337803ccce80d4772a9761896c7699ec00 | |
parent | 673f66f56e95bdc166becd2616254acd39af1baa [diff] |
fix to support ticket
diff --git a/support/doctype/support_ticket/__init__.py b/support/doctype/support_ticket/__init__.py index 936233d..63ed8c1 100644 --- a/support/doctype/support_ticket/__init__.py +++ b/support/doctype/support_ticket/__init__.py
@@ -92,7 +92,7 @@ sendmail(\ recipients = [d.raised_by], \ sender = self.email_settings.support_email, \ - subject = '['+d.name+'] ' + d.subject, \ + subject = '['+d.name+'] ' + str(d.subject or ''), \ msg = response) def auto_close_tickets(self):