Fix in subject issue of support ticket
diff --git a/erpnext/support/doctype/support_ticket/support_ticket.py b/erpnext/support/doctype/support_ticket/support_ticket.py
index bdf3c9a..986a9b5 100644
--- a/erpnext/support/doctype/support_ticket/support_ticket.py
+++ b/erpnext/support/doctype/support_ticket/support_ticket.py
@@ -19,7 +19,7 @@
 		if not self.doc.new_response:
 			webnotes.msgprint("Please write something as a response", raise_exception=1)
 		
-		subject = '[' + self.doc.name + '] ' + self.doc.subject
+		subject = '[' + self.doc.name + '] ' + (self.doc.subject or 'No Subject Specified')
 		
 		response = self.doc.new_response + '\n\n[Please do not change the subject while responding.]'