mirror of
https://github.com/coddingtonbear/django-mailbox.git
synced 2026-07-09 22:38:19 +02:00
Fix the IndentationError in last commit.
This commit is contained in:
parent
eca0b2caa4
commit
491b489867
1 changed files with 1 additions and 1 deletions
|
|
@ -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(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue