summaryrefslogtreecommitdiffstats
path: root/askbot/mail
diff options
context:
space:
mode:
authorAdolfo Fitoria <adolfo.fitoria@gmail.com>2012-09-28 15:42:09 -0600
committerAdolfo Fitoria <adolfo.fitoria@gmail.com>2012-09-28 15:42:09 -0600
commit19e3cea75d091137b8f29552cd942e6397ed7e54 (patch)
tree6957fd30b41347b8d74bf8de4fdd9fdaf6897e2c /askbot/mail
parentc10f919d6c98898316d993a9ebe6d583c2425e64 (diff)
downloadaskbot-19e3cea75d091137b8f29552cd942e6397ed7e54.tar.gz
askbot-19e3cea75d091137b8f29552cd942e6397ed7e54.tar.bz2
askbot-19e3cea75d091137b8f29552cd942e6397ed7e54.zip
fixed error and added separator
Diffstat (limited to 'askbot/mail')
-rw-r--r--askbot/mail/lamson_handlers.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/askbot/mail/lamson_handlers.py b/askbot/mail/lamson_handlers.py
index 3c937014..91a09d2f 100644
--- a/askbot/mail/lamson_handlers.py
+++ b/askbot/mail/lamson_handlers.py
@@ -146,9 +146,10 @@ def process_reply(func):
)
#here is the business part of this function
- parts = get_parts(message),
+ parts = get_parts(message)
for part_type, content in parts:
if part_type == 'body':
+ print '==============================='
print 'message :', content.split('\n')[:10]
break
else: