From 491b489867dd8b29458b376109964e29526924e7 Mon Sep 17 00:00:00 2001 From: "Anders.Du" Date: Sun, 21 Jul 2013 17:31:44 +0800 Subject: [PATCH] Fix the IndentationError in last commit. --- django_mailbox/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_mailbox/models.py b/django_mailbox/models.py index 6504d1a..1c9d3dd 100755 --- a/django_mailbox/models.py +++ b/django_mailbox/models.py @@ -263,7 +263,7 @@ class Mailbox(models.Model): msg.to_header = message['to'] msg.save() message = self._get_dehydrated_message(message, msg) - msg.body = unicode(e_message.as_string(),errors='ignore') + msg.body = unicode(e_message.as_string(),errors='ignore') if message['in-reply-to']: try: msg.in_reply_to = Message.objects.filter(