diff options
-rw-r--r-- | askbot/mail/lamson_handlers.py | 3 |
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: |