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 ))