summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--askbot/lamson_handlers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/lamson_handlers.py b/askbot/lamson_handlers.py
index 9af17111..56f19bd5 100644
--- a/askbot/lamson_handlers.py
+++ b/askbot/lamson_handlers.py
@@ -97,7 +97,7 @@ def ASK(message, host = None):
body = get_body(message)
attachments = get_attachments(message)
from_address = message.From
- subject = message.Subject
+ subject = message['Subject']#why lamson does not give it normally?
mail.process_emailed_question(from_address, subject, body, attachments)