summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--askbot/lamson_handlers.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/askbot/lamson_handlers.py b/askbot/lamson_handlers.py
index 541a4708..5fb758a7 100644
--- a/askbot/lamson_handlers.py
+++ b/askbot/lamson_handlers.py
@@ -98,6 +98,10 @@ def get_parts(message):
"""
parts = list()
+
+ if message.body()
+ parts.append('body', message.body())
+
for part in message.walk():
part_type = get_part_type(part)
if part_type == 'body':