summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-03-16 03:41:25 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-03-16 03:41:25 -0400
commit71d38e32ef2db40458c948c48c2ef62adaed698e (patch)
treeed6257360ca97b74eca36c523c5f391a910a4285
parent690fe8b44738282c3312969b146905ce578816a6 (diff)
downloadaskbot-71d38e32ef2db40458c948c48c2ef62adaed698e.tar.gz
askbot-71d38e32ef2db40458c948c48c2ef62adaed698e.tar.bz2
askbot-71d38e32ef2db40458c948c48c2ef62adaed698e.zip
fixed the subject line issue again
-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)