summaryrefslogtreecommitdiffstats
path: root/askbot/mail
diff options
context:
space:
mode:
authorEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-11-07 17:25:42 -0300
committerEvgeny Fadeev <evgeny.fadeev@gmail.com>2012-11-07 17:25:42 -0300
commit0933af23f5878d0f1fa8ff4510bc669938990e49 (patch)
tree4b1ab4c1a04b266fd76537d2b11eeb647bd7ee20 /askbot/mail
parente7b0e1c8f3ffa943fd28d081a9f2ba8acf6a06aa (diff)
downloadaskbot-0933af23f5878d0f1fa8ff4510bc669938990e49.tar.gz
askbot-0933af23f5878d0f1fa8ff4510bc669938990e49.tar.bz2
askbot-0933af23f5878d0f1fa8ff4510bc669938990e49.zip
remove print statement from lamson handler
Diffstat (limited to 'askbot/mail')
-rw-r--r--askbot/mail/lamson_handlers.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/askbot/mail/lamson_handlers.py b/askbot/mail/lamson_handlers.py
index da09eec2..b5a23758 100644
--- a/askbot/mail/lamson_handlers.py
+++ b/askbot/mail/lamson_handlers.py
@@ -147,13 +147,6 @@ def process_reply(func):
#here is the business part of this function
parts = get_parts(message)
- for part_type, content in parts:
- if part_type == 'body':
- print '==============================='
- print 'message :', content
- break
- else:
- continue
func(
from_address = message.From,
subject_line = message['Subject'],