From 050b972c681b278ec31dc2f8f5848ec15013d24c Mon Sep 17 00:00:00 2001 From: Adam Coddington Date: Thu, 28 Jun 2012 09:45:37 -0700 Subject: [PATCH] Adding a missing newline. --- django_mailbox/management/commands/getmail.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_mailbox/management/commands/getmail.py b/django_mailbox/management/commands/getmail.py index c431834..5f1aad3 100644 --- a/django_mailbox/management/commands/getmail.py +++ b/django_mailbox/management/commands/getmail.py @@ -11,7 +11,7 @@ class Command(BaseCommand): self.stdout.write('Gathering messages for %s\n' % mailbox.name) messages = mailbox.get_new_mail() for message in messages: - self.stdout.write('Recieved %s (from %s)' % ( + self.stdout.write('Recieved %s (from %s)\n' % ( message.subject, message.from_address ))