summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-05-28 01:20:41 -0400
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-05-28 01:20:41 -0400
commit12382d0eecbd8228e3dc47c2a419371b22507927 (patch)
tree0fd1c05c17598f85cbb390078228a57ed24bc1f7
parent6ca7dd00282cf76edf80e2c003a2876a78981fdb (diff)
downloadaskbot-12382d0eecbd8228e3dc47c2a419371b22507927.tar.gz
askbot-12382d0eecbd8228e3dc47c2a419371b22507927.tar.bz2
askbot-12382d0eecbd8228e3dc47c2a419371b22507927.zip
fixed a bug in processing of ask by email
-rw-r--r--askbot/mail/lamson_handlers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/askbot/mail/lamson_handlers.py b/askbot/mail/lamson_handlers.py
index a802fbb6..afcbb031 100644
--- a/askbot/mail/lamson_handlers.py
+++ b/askbot/mail/lamson_handlers.py
@@ -188,7 +188,7 @@ def ASK(message, host = None, addr = None):
parts = get_parts(message)
from_address = message.From
subject = message['Subject']#why lamson does not give it normally?
- body_text, stored_files, unused = process_parts(parts)
+ body_text, stored_files, unused = mail.process_parts(parts)
if addr == 'ask':
mail.process_emailed_question(
from_address, subject, body_text, stored_files